Hi,
I've been getting the following message when I run my php page:
Parse error: parse error, unexpected T_STRING error on line 4
The following is top few lines in my script. Look at the 4th and 5th line.
include("inc/config.php");
$connection = mysql_connect($hostname, $user, $pass) or die ("Unable to connect!");
$query = SELECT * FROM clients WHERE name = ('$name') AND password = PASSWORD('$password');
$result = mysql_db_query($database, $query, $connection);
if (mysql_num_rows($result) == 1)
I am very new to this PHP stuff. It took me 5 hours just to figure out a small quotation problem.
I appreciate the help.