mikebyrne Posted March 10, 2009 Share Posted March 10, 2009 I'm trying to run a test page to input data into my DB test.php <html> <body> <? include("connect.php"); // now you are connected and can query the database <form action="test.php" method="post"> Firstname: <input type="text" name="Fname" /> Lastname: <input type="text" name="Sname" /> VOTE: <input type="text" name="vote" /> <input type="submit" /> </form> // don't forget to close the mysql connection mysql_close(); ?> </body> </html> Im getting the error Parse error: parse error in C:\xampp\htdocs\test.php on line 7 line 7 = <form action="test.php" method="post"> Link to comment https://forums.phpfreaks.com/topic/148856-solved-parse-error/ Share on other sites More sharing options...
Mchl Posted March 10, 2009 Share Posted March 10, 2009 This is not MySQL problem. Please see this manual page for solution http://www.php.net/manual/en/language.basic-syntax.phpmode.php Link to comment https://forums.phpfreaks.com/topic/148856-solved-parse-error/#findComment-781659 Share on other sites More sharing options...
mikebyrne Posted March 10, 2009 Author Share Posted March 10, 2009 I cant see whats wrong with the code?? Link to comment https://forums.phpfreaks.com/topic/148856-solved-parse-error/#findComment-781684 Share on other sites More sharing options...
trq Posted March 11, 2009 Share Posted March 11, 2009 I cant see whats wrong with the code?? You've got html within <?php ?> tags. Link to comment https://forums.phpfreaks.com/topic/148856-solved-parse-error/#findComment-781738 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.