Re: [Phplib-users] While + Mysql
Brought to you by:
nhruby,
richardarcher
|
From: Joerg B. <be...@ta...> - 2005-04-19 21:02:26
|
Marylly Araujo Silva schrieb:
> Hello guys
>
> I'm new in the list and I want to know how I could use "while" to see
> the rows from tables of my db without using the command show_results().
do you mean something like that?
while($db->next_result()){
echo $db->f('column1').'<br/>';
echo $db->f('column2').'<br/>';
...
}
regards
Joerg
|