>Now, obviously this only echoes the first part, as it seems the array is
>at the end when it tries to loop through again.
>I tried a reset($myrow_it) , but it drops an error about $myrow_it not
>being an array.
It's not an array, it's a MySQL result identifier.
You want http://php.net/mysql_dat
on 29/08/02 5:06 PM, Petre Agenbag ([EMAIL PROTECTED]) wrote:
> Jason
> Thanks
> the mysql_data_seek() works.
> With Justin's help, I used the mysql_data_seek() to reset the $result
> "matrix" to 0, and re-issued the same while statement.
> It now produces the desired output.
> Thanks.
Of course
Jason
Thanks
the mysql_data_seek() works.
With Justin's help, I used the mysql_data_seek() to reset the $result
"matrix" to 0, and re-issued the same while statement.
It now produces the desired output.
Thanks.
On Thu, 2002-08-29 at 08:46, Jason Wong wrote:
> On Thursday 29 August 2002 14:16, Pet
Jason
Sorry, I completely forgot to comment on your suggestion:
I did try mysql_data_seek(), but it didn't work for me ( guess I don't
know how exactly it works), BUT, it did look like it was meant for
stepping through a one dimensional array, and $result is not a one
dimensional array, right?
Ma
1. did my code work?
2. It appears that you have to reset the mysql_fetch_*(), not reset the
$myrow. Try calling:
mysql_data_seek($result_it, 0)
before
while ($myrow = mysql_fetch_assoc($result))
It would appear that it resets the $result_it for a call to
mysql_fetch_row(). I wou
On Thursday 29 August 2002 14:16, Petre Agenbag wrote:
> Hi Justin
> OK, a quick feedback on your previous suggestion:
>
> I tried to unset the $myrow_it, but it still didn't produce any output.
> The only way I could get it to work was with the same method you
> suggested in this e-mail.
> I had
Hi Justin
OK, a quick feedback on your previous suggestion:
I tried to unset the $myrow_it, but it still didn't produce any output.
The only way I could get it to work was with the same method you
suggested in this e-mail.
I had to create 2 new vars ( which basically boils down to 2 more
SQL's).
7 matches
Mail list logo