Jump to content

array error


mattm1712

Recommended Posts

 
im running this code :
 
$return = array();
$query = mysql_query("SELECT name, uf_id FROM leaguenames WHERE source='$sourceid'");
 
while ($array = mysql_fetch_assoc($query))
{
$return[] = [     "name" => $array["name"],
                       "uf_id" => $array["uf_id"]
 
                  ];
}
 
 
 
and im getting this error
 

Parse error: syntax error, unexpected '[' in /home/content/35/10014135/html/scripts/updatefunctions.php
 
can anyone help me?
Link to comment
Share on other sites

The syntax your using requires PHP 5.4.0 or newer. A call to phpinfo will tell you what your using. If it's not new enough, then you need to change it to the older syntax, which is basically just using array( .. ) rather than [ .. ].

$return[] = array(     "name" => $array["name"],
"uf_id" => $array["uf_id"]

);
Edited by kicken
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.