> Can someone tell where I messed up on this code snippit?
Your first mistake is not giving us the full error and the line
number...
> if ($res->numRows() > 0){
> list($id, $question, $responce1,
$responce2,
> $responce3) = $res->fetchRows()
and you're missing a ; here... ^^
> $id = $row[0];
> $question = $row[1];
> $responce1 = $row[2];
> $responce2 = $row[3];
> $responce3 = $row[4];
> }
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php