Jump to content

[SOLVED] Parse Error??


mikebyrne

Recommended Posts

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

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.