Please help if you can.
I have 2 arrays and need to add them togther sort of. eg
$numbers = array("1","2,","3"); $name = array("john","bert","bob");
Iwant to get a output like
1 = john 2 = bert 3 = bob
how can I do this.
please help if u can
Lee
try this:
for ( $i=0; $i<=count($numbers); $i++) { echo $numbers[$i] . " = " . $name[$i]; }