I have a form that submits to a php page that displays a users choices before paying and creates a form that submits the parsed values of the previous form to paypal to take payment when they press "buy now"
I'd like to send an email to myself to alert me someone has ordered when the user submits the form (which has action="http://paypalprocessor")
I know javascript can add onSubmit="return Validate();" , how would I add a call to a .php page in the Validate(); routine?
the .php called would just send the email to me and then the routine would return a true.
Andy