I've got a strange thing. I've been using this code to get row information:
$conn = mysql_connect($host,$user,$password) or die ("Couldn't connect to server.");
$db = mysql_select_db($database,$conn) or die ("Couldn't select database.");
$jquery = "SELECT FROM jobs WHERE jobid='$request'";
$jresult = mysql_query($jquery) or die("Couldn't execute query.");
$rows = mysql_fetch_assoc($jresult);
extract($rows); / line94 */
Note: $request is a session variable, and 'jobid' is a column in the table 'jobs'.
However, since I switched to using a SESSION_START, I cannot get anything but a warning:
Warning: extract(): First argument should be an array in /home/mydir/public_html/data/myfile.php on line 94.
It worked great until I added sessions. Can I not extract a row while in a session?