摘要: 1 2 3 租房子 4 5 6 区域:全选 7 8 query($sqy); 14 foreach($aqy as $v) 15 { 16 echo "{$v[0]}"; 17 } 18 ?> 19 20 21 22 租赁类型:全选 23 24 query($szl); 27 foreach($azl as $v)... 阅读全文
posted @ 2017-05-05 16:56 张小琪 阅读(192) 评论(0) 推荐(0) 编辑
摘要: HTML的两类标签:行标签、块标签 行标签:包含a、span、em、strong、img、var; a标签:主要用来链接一个其他的网页; span标签:主要用来对行内的文字进行一些样式以及其他的操作; em标签:一般用来对文字进行强调,使用斜体体现出来; strong标签:一般用来对文字进行强调,使 阅读全文
posted @ 2017-05-05 15:10 张小琪 阅读(753) 评论(0) 推荐(0) 编辑
摘要: <h1>租房子</h1> <form action="zufangzi.php" method="post"><div>区域:<input type="checkbox" name="qx" onclick="quanxuan(this,'qy')" />全选</div><div><?phprequ 阅读全文
posted @ 2017-05-04 15:40 张小琪 阅读(116) 评论(0) 推荐(0) 编辑
摘要: <h1>汽车信息</h1><?phprequire("../0428/DBDA.class.php"); 引用文件$db = new DBDA(); //1.如果没有提交数据,显示所有//2.如果有提交数据,根据关键字查询显示$name="";$tj1 = " 1=1 "; //第一个条件,对应名称 阅读全文
posted @ 2017-05-04 15:35 张小琪 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 一. <select><?php $db=new MySQLi("localhost","root","root","zuoye"); $sql="select * from fruit"; $result=$db->query($sql);while( $arr=$result->fetch_ro 阅读全文
posted @ 2017-05-03 14:39 张小琪 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 为了以后便于访问数据库的修改,可以将必要的那几句语言封装为一个类,移到其他的电脑上时可以快速的改变数据库的一些内容 1.封装类的后缀名是***.class.php <?php class 名字 { public $host="localhost"; //定义默认的链接方式 public $uid=" 阅读全文
posted @ 2017-05-03 14:35 张小琪 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1.查看数据 <body><h1>显示info信息</h1><table width="100%" border="1" cellpadding="0" cellspacing="0"> <tr> <td>代号</td> <td>姓名</td> <td>性别</td> <td>民族</td> <td 阅读全文
posted @ 2017-04-26 16:51 张小琪 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1.建立登陆页面(登陆和注册差不多) <body> <h1>登录页面</h1> <form action="denglu.php" method="post"><div>用户名:<input type="text" name="uid" /></div><div>密码:<input type="pa 阅读全文
posted @ 2017-04-26 16:33 张小琪 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1.先建立一个注册页面 <h1>注册</h1> <form action="chuli.php" method="post">链接到的文件,就是登陆的处理页面。也可以用get,地址栏显示不安全。<div>用户名:<input type="text" name="uid" /></div><div>密 阅读全文
posted @ 2017-04-26 16:17 张小琪 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 1.造一个mysqli对象,造连接对象 $db=new MYSQLi('localhost',"用户名","密码",“数据库名称”) 2.准备一条SQL语句 $sql=“select*from 表名” 3.执行SQL语句,如果是查询语句,成功返回结果集对象 $result=$db->query($s 阅读全文
posted @ 2017-04-25 16:53 张小琪 阅读(79) 评论(0) 推荐(0) 编辑