Randy Posted March 8, 2006 Share Posted March 8, 2006 Is it possible to make a submit button just look like a normal link...if i was to use whatever.php?msg=This is the message and it would probably be too long to use GET Link to comment https://forums.phpfreaks.com/topic/4452-submit-button/ Share on other sites More sharing options...
JasperBosch Posted March 8, 2006 Share Posted March 8, 2006 Hi,You could try this:[code]<form name="nameOfTheForm" action="phptest1.php" method="POST"><input type="hidden" name="msg" value="This is the message and it would probably be too long to use GET"/><a href="javascript :document.nameOfTheForm.submit();">submit</a></form>[/code](Remove the blank after 'javascript' and before ':') Link to comment https://forums.phpfreaks.com/topic/4452-submit-button/#findComment-15477 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.