Jump to content

Parse error: syntax error, unexpected T_VARIABLE


Cruiz Risner

Recommended Posts

I am getting this error: "Parse error: syntax error, unexpected T_VARIABLE in /home/cruiz/public_html/phpmail.php on line 10"

 

for this code

<html>
<body>

<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
  {
  //send email
  $to = $_REQUEST['to']
  $email = $_REQUEST['email'] ;
  $subject = $_REQUEST['subject'] ;
  $message = $_REQUEST['message'] ;
  mail( "TO: $to", "Subject: $subject",
  $message, "From: $email" );
  echo "Thank you for using my fake mail system. Simple is great.";
  }
else
//if "email" is not filled out, display the form
  {
  echo "<form method='post' action='index.php'>
  TO: <input name='TO' type='text' /><br />
  Email: <input name='email' type='text' /><br />
  Name: <input name='subject' type='text' /><br />
  Message:<br />
  <textarea name='message' rows='15' cols='40'>
  </textarea><br />
  <input type='submit' />
  </form>";
  }
?>

</body>
</html> 

 

can anyone fix this?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.