Is there a way you can display values of two array same time???
here what i done... but doesn't work
$a = array (alwad,sheab,faruk,alal,raju);
$b = array ("awladuk@yahoo.co.uk","sheabu@yahoo.co.uk","faruk@aol.com","raju@nomail.com","alal@khan.com");
if (isset($a) && isset($b))
{
while(list($key1,$RecpName) = @each($a) && list($key, $RecpEmail) = @each($b))
{
print $RecpName;
print "<br>";
print $RecpEmaill;
}
}
Whats wrong with the code???
is there any alternative???