> John W. Holmes wrote:
> >>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...
> >
> >
> 
> that fixed the unexpected t_variable but now it is Fatal error: Call
to
> undefined function: fetchrows()
> 
> list($id, $question, $responce1, $responce2,$responce3) =  $res-
> >fetchRows()

That means there is no function fetchrows() associated with whatever
class $res comes from...

---John Holmes...



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to