i use the following :
<input name="SN" type="submit" id="SN" value="S/N" />
to call this php to open RunQuery
<?php
if (isset($POST['SN'])) { // if SN has been submitted
$SESSION['SerialNo'] = $SerialNumber;
header("Location: /ccs/Reports/RunQuery.php");
exit;
}
?>
This all works fine but my query is can this be modified to open in a NEW Window and how.
Thanks,
Paul