我正在尝试开始使用PHP和HTML。我现在有一个index.html和一个.php文件(都在下面).当我执行PHP文件的条目出现在数据库中,当我在浏览器中点击提交它不.页面然后是空的,它可能挂起时连接建立.也许这与权限有关,但是这些文件已经属于www-data,有权限。也许这里有人知道该怎么做。
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
</head>
<body>
<form action="transmit.php" method="post">
<label for="username">Benutzername:</label>
<input type="text" id="username" name="username"><br><br>
<label for="password">Passwort:</label>
<input type="password" id="password" name="password"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
个字符
Thanks:)
1条答案
按热度按时间3j86kqsm1#
所以,我使用127.0.0.1而不是localhost。我得到了以下错误:
字符串
与另一个用户它现在工作,所以我改变了根密码.现在一切正常,即使与localhost.谢谢:)