> $one = array(0 =>'golf', 1 => 'field'); > $two = array(0 => "On the golf course or in the field of clover"); > $array_exp = explode($one, $two);
What's the desired result?
array('golf' => "On the golf course or in the field of clover",
'field' => "On the golf course or in the field of clover")); ?
Marc
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

