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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.