Many people who have watched the Sending Mail with PHP tutorial at gotoAndLearn() have emailed me saying that the resulting email content is empty. This was my mistake. The version of PHP that my server is running allows you to just reference your posted information directly. So I just used $email to retrieve that value.
The correct way to do it is to use the $_POST[] syntax to get those values. So for the email you would say$_POST['email'].
If you do that for all of the sent data it should then work.
Sorry about that
No comments:
Post a Comment