Drupal: Submit Button with Image submit

Though this is not the correct way todo - but this works fine.

Usng this code you can replace your Submit button with Image submit button.

<?php
$myVariable = str_replace('type="submit"', 'type="image"', str_replace('value="Send"', 'src="files/myimage.gif"', my_form() ) );
?>