That should do it: <?php $x = array(3,4,6,8); $y = array(10,20,40,10); $tmp = $x; rsort($tmp); $n = $tmp[0];
$newArr = array(); $newArr = array_fill(0, $n-1, 0); for($i=0;$i<count($x);$i++) { $newArr[$x[$i]-1] = $y[$i]; } print_r($newArr); ?> "Max" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hello all, I have two arrays as follows: $x = array(3,4,6,8); $y = array(10,20,40,10); I need these arrays could be merged with '0' in between. Result expected : $x = array(1,2,3,4,5,6,7,8); $y = array(0,0,10,20,0,40,0,10); Can anybody help me ? Thanks in advance. Max -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php