I can't seem to figure out the following error:
Parse error: syntax error, unexpected T_STRING in /home/content/25/11427125/html/connect.php on line 16
Here's the whole code:
<?php
echo "Under Construction. Please try again soon!";
//-------MYSQL INFO LOGIN--------
$host = '******';
$user = 'RootSpread';
$pass = '******';
$db = 'accounts';
$ms = mysql_pconnect($host, $user, $pass);
if ( !$ms )
{
echo "Error connecting to database.\n";
}
mysql_query (' INSERT INTO account ('firstname', 'initial', 'lastname', 'email', 'password', 'dob', 'number', 'sex')
VALUES ('','','')';
mysql_close($ms);
?>