Posted by Shelly on 08/06/05 13:16
"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 (!$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]
|