Building Submit Button
Posted: Wed Feb 13, 2008 7:15 am
How can I build a submit button with flash movie or any image? Help me
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<img src="myimg.gif" onclick="document.forms.myformname.submit();" />Code: Select all
<input type="image" src="myimg.gif"/>Code: Select all
<style>
.button{
border:none;
background-image:url('myimg.gif');
width:150px;
height:35px
}
</style>
<input type="submit" class="button" value=""/>
http://www.google.com/search?q=html+submit+image