回 帖 发 新 帖 刷新版面

主题:如何将输入数据传送到php中?

小弟初学php,现有一小程序,欲将输入数据从htm文件传送倒php程序中,程序如下:

send.htm:

<html>
<head>
<title> send </title>
</head>
<body>
<form name="send" method=get action="receive.php">
<input type="text"  name="in">
<input type=submit>
</form>
</body>
</html>


receive.php

<html>
<head>
<title> receive </title>
</head>
<body>
<?php
echo "$in";
?>
</body>
</html>

   就是在一个form表单的输入框中输入一个数,用php将它显示出来,将输入数据从html文件中传送倒php程序中,这段代码哪里有问题,为何得不到正确结果?这可是我根据教材编得啊!恳请各位高人不吝赐教、指点迷津!

回复列表 (共5个回复)

沙发

receive.php

<html>
<head>
<title> receive </title>
</head>
<body>
<?php
echo $_GET["in"];
?>
</body>
</html>

板凳

老兄,我按你说的改了,还是显示不出来啊,该怎么搞?

3 楼


难道这个问题没有人知道吗?

4 楼

可以显示的啊。两个文件是在同一目录下的么?网站架上了么?PHP运行正常么?

5 楼

receive.php


<?php
$in = $_GET["in"];
?>
<html>
<head>
<title> receive </title>
</head>
<body>
<?php
echo $in;
?>
</body>
</html>

我来回复

您尚未登录,请登录后再回复。点此登录或注册