第五讲 数组? 数据传输
php数组的 增 改 删 查
unset($arr2['c']);? 输出数组 键值为c的 数据 echo $arr2['a'];? ? 查看
--------------------------------------
下面是客户端? 用pos? 传输 多 get传输 会在网址上显示出来
<!DOCTYPE html> <html> <head> ?? ?<meta charset="utf-8"/> ?? ?<title>数据发送客户端</title> </head> <body> ?? ?<form action="save.php" method="post">? ? ? ? ?传输的目标action? method 方式 ?? ??? ?<input type="text" name="content"/>? ? ? ? ? ? 表单的名字 必须有 用于传输 ?? ??? ?<input type="text" name="user"/> ?? ??? ?<input type='submit' value="提交"/>
?? ?</form>
</body> </html>
-------------------------------
接收器? ?$_POST 是系统的预变量? ?有一个下划线? 这样的预变量还有很多
<?php include('input.php'); $content =$_POST['content']; $user = $_POST['user'];
$input = new input(); $is = $input ->post($content); if($is== false){ ?? ?die('留言内容书序不正确'); } $is = $input ->post($user); if($is== false){ ?? ?die('留言人数据不正确'); } var_dump($content,$user);
?>
|