我将值从一个页面发布到另一个页面。这是一个非常简单的过程,但我不断收到错误:
未找到 在此服务器上找不到请求的URL /'sœsend_notification.php。 此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。
这是我的第一页:
<html>
<body>
<form action=“send_notification.php” method=“post”>
<table>
<tr>
<td>title:</td>
<td><input type=“text” name=“title”/></td>
</tr>
<tr>
<td>Message: </td>
<td><input type=“text” name=“message”/></td>
</tr>
<tr>
<td>
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
</body>
</html>
这是我的第二页:
<?php
require "init.php";
$messages=$_POST['message'];
$title=$_POST['title'];
echo $messages;
echo $title;
?>
我很困惑。
答案 0 :(得分:0)
在您的代码中,该网页正在请求网址http://example.com/“send_notification.php“
而不是http://example.com/send_notification.php
<html>
<body>
<form action="send_notification.php" method="post">
<table>
<tr>
<td>title:</td>
<td><input type="text" name="title"/></td>
</tr>
<tr>
<td>Message: </td>
<td><input type="text" name="message"/></td>
</tr>
<tr>
<td>
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
</body>
</html>
我已将“
更改为正确的html引号:"
在html(和php)中使用'
或"
。