|
I use JavaScript. Add something like this:
Submit Button
<input name="submit" type="submit" value="Add" onclick="popTAP();" >
The Function
function popTAP() {
var popTAP = window.open("taskAdd.php?pid=<?php echo $pid ?>",'tap','height=400,width=400,toolbar=no,locatio n=no,directories=no,status=no,menubar=no, scrollbars=yes,resizable=yes,copyhistory=no');
}
Once you get it working it is quite simple.
|