时间:2021-07-01 10:21:17 帮助过:3人阅读
不能直接在php标签中写文本内容,要显示要么echo,要么写到标签之外
text.php是什么东西...
后台代码修改为
字符串用双引号或者单引号包裹后台代码修改为
字符串用双引号或者单引号包裹
这样是对的, lz那个text.php是干什么的?楼主说出你的疑问让我帮你解答一下。
4楼的方法是对的。
接收form过来的值,当然用$_POST。
而且在页面中,也是要用 例如:
=$_POST['a']?>一个不错的参考代码:
array( 'method' => 'POST', 'header' => 'Content-type:application/x-www-form-urlencoded', 'content' => $postdata, 'timeout' => 15 * 60 // 超时时间(单位:s) ) ); $context = stream_context_create($options); $result = file_get_contents($url, false, $context); return $result; } //使用方法 $post_data = array( 'username' => 'stclair2201', 'password' => 'handan' ); send_post('http://www.qianyunlai.com', $post_data);表单里面是input name='name'
你在$_POST里面也要小写 $_POST['name']可以这样
echo "welcome".
?>
welcome
you are years old可以这样
welcome
you are years old可以这样
welcome
you are years old
11楼的做法是比较好的做法,就是在HTML中插入php代码