This is my problem, i want the popup being created while the script is still running.
The user needs to input information into the popup, but the script has to keep running if he hasnt done it after 5 secs.
This is not the complete script, only the relevant piece.
Thanks in advance
<?php
$loop = "1";
while ($loop != "3")
{
$term = "41";
while ($term != "45")
{
?>
<script language="javascript">
childwindow=window.open("popupLO.php?LO=<? echo $term; ?>");
</script>
<?
sleep(5);
$term++;
}
$loop++;
}
?>