Hallo,
10 Sekunden im PHP Manual:
array_combine -- Creates an array by using one array for keys and another for its values
$array = array("hallo","welt");
$array = array_combine($array, $array); //PHP5 only
Sonst hier schauen für weiter Infos zu Arrays:
http://de2.php.net/manual/de/ref.array.php
Grüße
Andavos