Hi,
is it possible to have a large string, and then explode it into an array but have the first bit of the explode as the key and the second as the value?
i.e.
$exploded = explode(':', $string);
$thisarray();
foreach ($exploded as $key => $val){
$thisarray[$key] = $val;
}
Something like that. But it doesnt work.
Any help apreciated.