Home >Backend Development >PHP Tutorial > PHP打开页面的有关问题

PHP打开页面的有关问题

WBOY
WBOYOriginal
2016-06-13 13:12:381006browse

PHP打开页面的问题
echo '<script>window.open("outputcsv.php?number='.$maxnum.'");</script>'; 
echo '<script>window.open("label_outputcsv.php?number='.$maxnum.'");</script>'; 


这两个页面分别从数据库导出两个不同的excel表格,然后下载

单独调用一个,没问题,同时打开两个都没有

------解决方案--------------------
有可能是被浏览器block了么
------解决方案--------------------
代码是没有问题的你可以自己测试一下
echo '<script>window.open("http://www.sina.com");</script>';
echo '<script>window.open("http://www.sohu.com");</script>';

除非你里面的变量有问题,或者是浏览器拦截了你的弹出窗口,现在浏览器都具备这种基础功能,拦截弹出窗口。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn