Oops, I forgot to add the $count++ at the end of the while loop, but
that was just an ommission of this post, in my real code, the array is
created fine ( tested it with a print_r($my_array) ).


On Tue, 2002-10-29 at 19:40, Petre Agenbag wrote:
> Hi
> I KNOW I'm gonna get flamed, but I can't find this anywhere in my books
> or in the manual, yet I know I've read it somewhere.
> 
> I created an array in a loop as such:
> 
> $sql = "select stuff from my_table";
> $result = mysql_query($sql);
> $count = 0;
> 
> while ($myrow = mysql_fetch_assoc($result)) {
>       $id = $myrow["id"];
>       $my_array[$count] = $id;
> }
> 
> 
> Now, I want to send that array to another page with a normal:
> 
> <a href="next_page.php?array=$my_array">Next</a>
> 
> BUT, that obviously doesn't work...
> 
> Please just help me out, I'm suffering...
> 
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


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

Reply via email to