The problem uppears in the file that i try to submite the gathered data into the database. and i get this error
Parse error: syntax error, unexpected T_STRING in /home/xxxx/public_html/Board/Addreply.php on line 7
my page's code is
<?php include('Connect.php'); ? ///info about databse connection.>
<?php
$user=$_REQUEST['username1'];
$threadid=$_REQUEST['ID'];
$body=$_REQUEST['Body'];
$date="someday";
mysql_query("INSERT INTO `Posts` (ThreadpostedID,Username,Body,Date) VALUES ('$threadid','$user','$body','$date')") or die mysql_error();
?>
as you can see its a very simple piece of code that i cant execute. 🙁