Jump to content

unexpcpected {


Hydrian

Recommended Posts

Iv got a script. Now it it tells me there is a unexpected { at the end of line 9 which is i dont know why it tells me its unexpected. Please help, im a learning phper

 

while (($row = mysql_fetch_assoc($result)) !== false{
	$users[] = $row;
}

 

 

Full Script

 

<?php

// fetchs all of the users from the table
function fetch_users(){
$result = mysql_query('SELECT `user_id` AS `id`, `user_username` AS `username` FROM `users` ');

$users = array();

while (($row = mysql_fetch_assoc($result)) !== false{
	$users[] = $row;
}

return $users;
}


?>

Link to comment
Share on other sites

It's fine that you're learning PHP but at some point you have to try to figure things out yourself. It takes like, what, 5 seconds to make a change and test it out?

 

I've told you what you're missing and PHP has told you that it found something unexpected. Any guesses as to what it was expecting?

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.