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>
# 3 Re: Sending a HTML form
PHP is server side , what peejavery said is in the client side .