Quote:
|
Originally Posted by drogue
hi - i have a simple form that allows users to input their email and submit - how do I call the PHP - or get the form to send to my email account I have set up - This has got to be an easy PHP document - ? But I cannot find anything that helps! I am in Dreamweaver - do I create a seperate PHP file that the form calls after clicking "submt" - or it it embedded in the HTML?
confused!
thanks for any help - mark 
|
You create a serperate PHP file and then you link to it using the forms action.
e.g. <form action="yourscript.php" method="POST">
Also make sure you include the method="POST".