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"> Quote Link to comment 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 Quote Link to comment 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?? Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.