Hi,
I'm trying to refer to a primary key in a result set so that I can mail it in a URL. However, I don't know how to refer to the variable without getting a parse error.
For example, if the query is named $report_details, I refer to a row in the result set using
$row_report_details = mysql_fetch_assoc($report_detail);
I've tried the following references and none of them worked:
$row_report_details['report_id']
$_POST['$row_report_details['report_id']']
$_GET['$row_report_details['report_id']']
echo $row_report_details['report_id']
Can someone help, please?
Thanks
Hanlie