I'm new to PHP and am slowly learning it. I have the following code that is
giving me errors could someone take a look and suggest a fix?

Parse error: parse error in /home/xxxxxxxx/public_html/Info/datain.php on
line 7

<HTML>
<?php
$db = mysql_connect("localhost", "xxxxxxxx","xxxxxxxxxx");
mysql_select_db("learndb",$db);
$sql = "INSERT INTO personnel (firstname, lastname, nick, email, salary)
VALUES ('$first','$last','$nickname',)

You are missing a ";" on the end of this, plus you need email and salary
variables in the VALUES list, plus the list shouldn't end with a comma.



Mark

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to