Sending a HTML form

Dear all,
How can I send an HTML form without any action from the client side (i.e. without any submit button)?
Thank you
[129 byte] By [lontana] at [2007-11-20 1:51:38]
# 1 Re: Sending a HTML form
That would be client-side scripting, or JavaScript to be exact.

<script language="JavaScript">
document.FORMNAME.submit();
</script>
PeejAvery at 2007-11-8 0:41:00 >
# 2 Re: Sending a HTML form
I am just curious if this is doable with PHP?
lontana at 2007-11-8 0:42:11 >
# 3 Re: Sending a HTML form
PHP is server side , what peejavery said is in the client side .
akgalp at 2007-11-8 0:43:10 >
# 4 Re: Sending a HTML form
JavaScript to be exact.
PeejAvery at 2007-11-8 0:44:10 >