在php中回声表单输入

时间:2017-01-26 13:24:50

标签: php jquery

我写了这两个简单的PHP代码,用jQuery测试php:

FILE aaa.php

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
  <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
  <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
  <form action="bbb.php" method="POST">
    <p>Il tuo Nome: <input type="text" name="name" value="" /></p>
    <p>La tua et: <input type="text" name="age" value ="" /></p>
    <p><input type="submit"></p>
  </form>
</body>
</html>

FILE bbb.php

Ciao <?php echo htmlspecialchars($_POST['name']); ?>.
La tua eta e di <?php echo (int)$_POST['age']; ?> anni.

但它不起作用,因为我在bbb.php上没有收到任何变量。

有人可以解释原因吗?

1 个答案:

答案 0 :(得分:0)

如果您在没有提交ajax表单的情况下使用jquery mobile,则需要在表单中使用data-ajax =“false”。

<form action="post.php" method="POST" data-ajax="false">