我有我的问题所在的代码。
if ($_FILES["file"]["error"] > 0){
$_SESSION['NOFILE'] = true;
header( 'Location: http://www.website.com/files/.index.php');
}
//Should I be using the absolute path like I have here. or should I use
if ($_FILES["file"]["error"] > 0){
$_SESSION['NOFILE'] = true;
header( 'Location: /files/.index.php');
}
我有这个问题是因为我对 PHP 较新。我要感谢你们所有人 - kim :) PS 是 SOF 的新手,所以我无法格式化我的代码。