所以在我的PHP脚本完成后,我有这一行:
$success = TRUE;
header('Location: ../admin.php'); //the main file
在admin.php文件中,我有这一行:
<?php
if ($_GET["success"] == TRUE) {
echo "<b>Your file has been imported.</b><br><br>";
}
知道为什么这个布尔值没有被传递以及为什么回声不起作用?