Exactly what the title says with working demonstration please.
I know the code but I am unable to get it working.
function q($a) {
return mysql_query($a);
}
function a($b) {
return mysql_fetch_assoc($b);
}
$abc="select * from table";
$bcd = q($abc);
$cde = a($bcd);
echo $cde[$column];
Thanks, Regards X
PS: sorry about the messy code just doing it off the top of my head