I am trying to combine two arrays in php4 as key value pairs. I found an example that does the job, however array_combine does not work in php4.
How do I combine to arrays in php4 as key value pairs.
$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);
print_r($c);