Hallo
Nein, Arrays kannst du nicht direkt übergeben. Du kannst sie aber in einen String verwandeln und im Script dann wieder in einen Array. Dazu gibt es explode() http://php3.de/explode bzw. implode() http://php3.de/implode
Beispiel:
$arr = array("a", "b", "c");
$str = implode("|", $arr); // $str = "a|b|c"
$arr_neu = explode("|", $str); // $arr_neu = array("a", "b", "c")
Grüße
David
--
"Nobody will ever need more than 640k RAM!"
1981 Bill Gates
"Nobody will ever need more than 640k RAM!"
1981 Bill Gates