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

Reply via email to