Errors

Location of the Videos
Post Reply
Thomar
Posts: 4
Joined: Thu Jun 09, 2011 2:21 am

Errors

Post by Thomar »

Hello

I just started with the tutorials currently on vid 2 and am already having problems.
I followed the vid exactly and for some reason I keep getting errors.
This is one of the errors I keep getting

( ! ) Parse error: syntax error, unexpected T_STRING in E:\wamp\www\Tutorial\test.php on line 5

not sure why here is the code maybe someone can point it out to me. Any help would be greatly appreciated

<?php
include 'connect.php';

$playerinfo ="select * from players where name = 'player1';
$playerinfo2 = mysql_query($playerinfo) or die ("could not select players");
$playerinfo3 = mysql_fetch_array($playerinfo2);

echo "Player1's email is " . $playerinfo3['email'];
echo "Player1's id is " . $playerinfo3['id'];

?>
User avatar
Zak Zillion
Posts: 112
Joined: Thu Apr 07, 2011 12:55 am

Re: Errors

Post by Zak Zillion »

Code: Select all

<?php
include 'connect.php';

$playerinfo = "select * from players where name = 'player1'";
$playerinfo2 = mysql_query($playerinfo) or die("could not select players");
$playerinfo3 = mysql_fetch_array($playerinfo2);

echo "Player1's email is " . $playerinfo3['email'];
echo "Player1's id is " . $playerinfo3['id'];

?>
You forgot to put a "
"Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius -- and a lot of courage -- to move in the opposite direction." - Albert Einstein

Old Project(s):
The Dark Flame
Thomar
Posts: 4
Joined: Thu Jun 09, 2011 2:21 am

Re: Errors

Post by Thomar »

That worked thank you!
Post Reply

Return to “Older Browser MMO Videos”