i have a form that calls a php3 form handler script omsubmit:
<FORM METHOD=post ACTION="send.php3" name="books" onsubmit="return check()" onmousemove="NoOfBooksChk()">
this script creates a confirmation page showing the choices of the form-user.
it also creates a button:
<input type='button' value='Submit'>
for the user to submit the form.
when the user clicks the Submit button it should send the form to an email
mail("email", "subject", "form options" );
The point is that i cannot write the code that the script needs to understand when the button is pressed from the page that the same script has created.
is there a way to do this?
i m sorry for ny english