Posted by NurAzije on 10/16/06 13:01
Try this one, this will work :
---------------------------------------------------
$test = explode('-','one-two-three-four-five');
$view = new Array();
foreach($test as $boo => $foo){
$view[$boo] = $foo;
}
print_r($view);
------------------------------------------------------
For php/ajax/javascript tutorials and tips, visit me on my blog at
http://www.nurazije.co.nr
[Back to original message]
|