php Email form came to my email but blank?

  • Thread starter Thread starter Carl H
  • Start date Start date
C

Carl H

Guest
The content did not show up on my page. Im using html and have a php page. When I get my mail, subject is there, from the person also on the sending part, when I open the email , .....a blanked page, the content didn't travel with the email. What am I missing? Which end do I have to fix? The html page or the php page?
Please no links. "Lucky" you just posted a dead link. Please no links.
<FORM METHOD=post ACTION="/cgi-bin/mail.php">
Your Email: <input name="[email protected],[email protected]" type="text" />

Feedback/Comments:

<textarea name="message" rows="15" cols="40">
</textarea>

<input type="submit" VALUE="Form"/>
</form>




and have a php file that contains this:

<?php
$email = $_REQUEST['[email protected]'] ;
$message = $_REQUEST['message'] ;

mail( "[email protected]", " SignUp",
$message, "From: [email protected]" );
header( "Location: thanks.html" );
?>
 
Back
Top