Click to See Complete Forum and Search --> : Sending a HTML form


lontana
October 4th, 2006, 05:18 AM
Dear all,
How can I send an HTML form without any action from the client side (i.e. without any submit button)?
Thank you

PeejAvery
October 4th, 2006, 08:45 AM
That would be client-side scripting, or JavaScript to be exact.

<script language="JavaScript">
document.FORMNAME.submit();
</script>

lontana
October 5th, 2006, 07:19 AM
I am just curious if this is doable with PHP?

akgalp
October 5th, 2006, 07:55 AM
PHP is server side , what peejavery said is in the client side .

PeejAvery
October 5th, 2006, 08:02 AM
JavaScript to be exact.