|
Posted by Jim Moseby on 08/03/05 20:53
> Ok, I got this far.
>
> include("config.php");
> $username = $_GET['name'];
> $password = $_GET['pword'];
> echo "Username = " . $username . "<br>";
> echo "Password = " . $password . "<br>";
> $query = "INSERT INTO user (name,password) VALUES
> ($username","$password")
> $result = mysql_query($query)
>
>
> config is just all the info to connect to server. i have to
> forms. name
> which is a for for entering username, and pword for entering
> password. I
> would like it so that when I enter the info for the forms,
> it puts all
> the data that I entered into a database. In this case I THOUGHT this
>
> $query = "INSERT INTO user (name,password) VALUES
> ($username","$password")
>
> would do the job but, it dosent. It gives a
>
>
> Parse error: syntax error, unexpected T_VARIABLE in C:\Program
> Files\Apache
> Group\Apache2\htdocs\php\login\registration_action.php on
> line 15
>
> How do I fix this, and make it send the data from the form, into the
> database?
>
We're missing some semicolons there on the $query and the $result lines,
aren't we?
JM
Navigation:
[Reply to this message]
|