我有一个功能,一旦完成应该在功能结束时打开一个名为“nexpage.php”的页面我使用了以下但它们都不起作用。
包含工作,但是当我使用它时,它会在当前页面中包含我不想要的新页面,并且需要关闭当前页面并打开下一页。
function myfunc(){
.........
include "nextpage.php";
echo "<a href='nextpage.php'>NewPage</a>"; <<does not find it
include_once "nextpage.php"; << open it in the page so javascript does not work and login wont disappear
header('Location: nextpage.php'); <<it refresh the page but does not open the nextpage
}