我想(在表单提交之后)在整个 PHP 过程完成之前打印一些 HTML 代码。以下代码仅在 copy() 和 system() 完成后打开窗口:
<script language="javascript">
window.open("copyProgress.php?source=<?php echo $_POST['element_100'];?>","","width=400,height=400,resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no");
</script>
<?php
sleep(3);
//move the file to the net disk
if(copy($tempUploadDir."\\".$_POST['element_100'], $dir.$subfolder."\\".$filename)) {
unlink($tempUploadDir."\\".$_POST['element_100']);
} else {
die("problem with uploading file. ".$tempUploadDir."\\".$_POST['element_100']);
}
system("x264.exe $args");
?>
您能否建议如何首先显示(并工作)HTML(JS)代码?
谢谢,马克。