My site yields the following error:
"Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /www/index.php on line 15"
Here is the content of /www/index.php:
<html>
<head>
<title>Testing 123</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<p>HTTP is working!</p>
<?php
error_reporting( E_ALL );
ini_set( 'display_errors', 1 );
echo "PHP is working!";
echo "If you see data below, then MySQL is working..."
// Make a MySQL Connection
mysql_connect('127.0.0.1', 'root', 'thepassword');
// Select database
mysql_select_db("test") or die("Unable to select database");
// Retrieve data from the table
$result = mysql_query("select * from awesome_people") or die("Unable to
// store the record of the table into $row
$row = mysql_fetch_array($result);
// Print out the contents of the entry
echo $row
//echo "Awesomeness Level -- 10 is highest".$row['awesomeness_level'];
//echo "Name".$row['name'];
?>
</body>
</html>
Can anyone help? Wore out Google...