Posted by robert on 05/18/06 01:43
| > <form method=post>
| > // your fields for the user to enter data here.
| > <input type=submit name=sendIt value=1 />
| > </form>
| >
| > in your php code, first look for:
| >
| > <?
| > $sendIt = $_POST['sendIt'] ? true : false;
| >
| > if ($sendIt)
| > {
| > // add validation here to make sure all data is
| > // present and not harmful (like email injections, etc.)
| > // now, send the mail
| > }
| > ?>
| >
| >
| Thank's Robert!
no problem...hope you get this working.
Navigation:
[Reply to this message]
|