if($api_response["success"] === true) {
header("Location: https://google.com");
exit;
} else {
// print_r($api_response);
$msg = "Some Error Occured!";
header("Location: ". $_SERVER['HTTP_REFERER']);
// echo $msg;
}
在上面的代码中,如果为 true,则代码将完美运行并按预期重定向。但如果情况不正确,我想显示错误index.php
<?php
if(isset($msg) && $msg != ''){
echo $msg;
}
?>
当条件为假时,我没有得到 $msg 变量的值。
慕哥6287543