Hi guys, this problem is making me tear my hair out.
I have a table which displays the resuts of a query, for each row is a button that when clicks on displays all the information pertaining to that field. How do I get this query to open in a new window?
The page is here
and the code for my button is:
if ($field==Nsn)
{
echo ("<td><div align='center'><b><font size='1' color='#000000' face='Verdana, Arial, Helvetica, sans-serif'><a href='report.php'><input type='Submit' name='Show' value='$value'></a></b></div></font></td>");
}
How can I achieve this? Thanks in advance.