Posted by Shelly on 08/06/05 13:23
Correction:
"Shelly" <sheldonlg.news@asap-consult.com> wrote in message
news:q60Je.2833$EX.1473@twister.nyroc.rr.com...
>
> "cameron7" <cameron7@gmail.com> wrote in message
> news:1123294206.038003.110890@z14g2000cwz.googlegroups.com...
>> <?
>> $row_QCBD_test['test']="Still Not Empty...\n";
>>
>> while (!empty($row_QCBD_test['test'])){
>> print $row_QCBD_test['test'];
>> }
>> ?>
>>
>> Output:
>> -----------------
>> Still Not Empty...
>
> Try:
>
> <?
> $row_QCBD_test['test']="Still Not Empty...\n";
>
> while (!empty($row_QCBD_test['test'])){
> print $row_QCBD_test['test'];
> $row_QCBD_test = mysql_fetch_assoc(the_result_variable_of_your_query);
> }
>
> Shelly
>
[Back to original message]
|