vicodin Posted March 15, 2011 Share Posted March 15, 2011 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 Link to comment https://forums.phpfreaks.com/topic/230664-php-error-helpnotice-unknown-skipping-numeric-key-0-in-unknown-on-line-0/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.