I have a PHP form (http://bit.ly/9O6h7) using POST which I have designed into a page with no submit button, instead I have images for each package. How can I create a GET function to make a link out of the first form which will be used for the images?
use <INPUT TYPE="IMAGE"> for using images as submit buttons. Please don't use the GET method as this is not very handy!. More information can be found about using images as submit buttons using google!
Well advised to use POST. However, you can do GET as follow if you still want. <a href="form.php?name=xxx&pass=bbbb&id=cccc"><img src='img'></a>
Its not good for security to use GET! Lots of documents writen why you should use POST method for forms and why not using GET method!