Struggling to pass a resultset gotten via PHP code
$resultset = mysql_query($q);
as a parameter to the next php file,
to be read by something like
$parm = $_POST['resultset'];
to here begin fetching each row.
Is this a Mysql restriction or my ignorance of good PHP code?
If the latter, would appreciate your help.
$resultset = mysql_query($q);
as a parameter to the next php file,
to be read by something like
$parm = $_POST['resultset'];
to here begin fetching each row.
Is this a Mysql restriction or my ignorance of good PHP code?
If the latter, would appreciate your help.