我正在尝试通过获取页面路径
<?php
/**
* @author
* @copyright 2013
*/
$current_file = $_SERVER["SCRIPT_NAME"];
echo $current_file;
?>
它给出了一个错误通知:未定义的索引:SCRIPT_NAME
我也将它包含在我的登录页面代码中
<form action="<?php echo $current_file;?>" method="POST">
Username : <input type="text" name="username"/> Password : <input type="password" name="password" />
<input type="submit" value="LogIn" />
</form>
它还给出了关于 $current_file 的错误