03-02-2008, 05:30 PM
|
#8 (permalink)
|
|
The Frequenter
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
|
Well, since you want to insert it one at a time I suggest you simply use the array_push(); command.
PHP Code:
$myArray = array(); if ($_GET['id']) { array_push($myArray, $_GET['id']); }
Otherwise, you can also do it in an foreach loop. 
__________________
"Life is a bitch, take that bitch on a ride"
|
|
|