所以我安装了 apache2、php7.4 和 mysql,但是当我尝试使用我的域名在互联网上查看我的 .php 文件时(我已经测试过并且可以正常工作),它只显示一个空白页。我可以查看 info.php 文件,Wordpress 界面也可以正常工作(我卸载了它,但它仍然在 .php 中)。我没有什么可更新或升级的,任何帮助都将不胜感激。
这是我的 index.php 文件:
<!--Splitting the header and footer into separate documents makes things easier!-->
<?php
include_once 'header.php';
#header( 'Location: login.php' )
?>
<section class="signup-form">
<h2>Log In</h2>
<div class="signup-form-form">
<form action="includes/login.inc.php" method="post">
<input type="text" name="uid" placeholder="Username/Email...">
<input type="password" name="pwd" placeholder="Password...">
<button type="submit" name="submit">Log In</button>
</form>
</div>
<?php
// Error messages
if (isset($_GET["error"])) {
if ($_GET["error"] == "emptyinput") {
echo "<p>Fill in all fields!</p>";
}
else if ($_GET["error"] == "wronglogin") {
echo "<p>Wrong login!</p>";
}
}
?>
</section>