Jump to content

Parse error: syntax error, unexpected T_ENDWHILE, expecting ',' or ';' in /home


shadrxninga

Recommended Posts

I have been getting that error and I cannot figure out why it is happening

 

Here is the error: Parse error: syntax error, unexpected T_ENDWHILE, expecting ',' or ';' in /home/scswc188/public_html/index.php on line 23

 

Here is my Code (Database Credentials removed for obvious reasons)

<?PHP

// Conect to the Mysql Server
$connect = mysql_connect("IP","USER","PASS");

//connect to the database
mysql_select_db("TABLE");

//query the database
$query = mysql_query("SELECT * FROM users_online WHERE online = 1");

// fetch the results / convert into an array

        WHILE($rows = mysql_fetch_array($query)):


	        $users = $rows['name'];



	echo "'<font color='black'>Online:<font color='green'>$users, </font></font>;"

	endwhile;

?>

 

or here http://pastebin.com/ZYh4t2pD

 

Thanks

 

Edit: Found the php tag :D

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.