Jump to content

PHP Error Help....Notice: Unknown: Skipping numeric key 0 in Unknown on line 0


vicodin

Recommended Posts

Hey, So what im trying to do is put my database variables into a session array. So this is what im trying to accomplish...

 

$_SESSION['Name_of_Row'] = $value

 

This is the script I wrote:

 

Function setupSession(){
session_start();
$query = "SELECT * FROM users WHERE u_id ='{$this->u_id}'";
    $result = mysql_query($query);
        $row = mysql_fetch_array($result);

foreach($row as $key => $value){
    if(!empty($value)){
        $_SESSION[$key] = $value;    
            }
                }
}

 

When that runs I get the following warning. Can anyone tell me what this means and how to fix it?

 

Error: Notice: Unknown: Skipping numeric key 0 in Unknown on line 0

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.