Hi, Is there any way I can construct an associative array out of 3 other arrays??
like for eg.
function parse() {
appid[];
appnm[];
url[];
}
I want to do something like this:
function arr() {
$applist = array("APPID" =>$appid,
"APP NAME"=>$appnm,
"URL" =>$url);
foreach($applist as $valor)
echo $key . $valor;
}
wud appreciate any help..
TIA,
sands

