I am making a SQL table viewing page through PHP, and I am trying to create popup windows through links in the table. I have a php variable $formID I am making a popup window by echoing a javascript script, like
echo "<td style='border:1px solid black;'>'<script type=\'text/javascript\'>window.open(\'awards.php?formID\',\'Window1\',
\'menubar=no,width=430,height=360,toolbar=no\');</script>'</td>";
would that pass $formID to awards.PHP or am i doing it wrong?
‘&’will give you syntax errors.