08 2017 档案

摘要:<body><form action="herozhuce.php" method="post"> <div>账号<input type="text" name="account"/></div> <div>密码<input type="text" name="password"/></div> < 阅读全文
posted @ 2017-08-30 21:09 汉企选手 阅读(95) 评论(0) 推荐(0) 编辑
摘要:class Ren{ public $name; public function say(){ echo "人正在说话"; }} class China extends Ren{ public function say(){ parent::say(); //将父类的方法拿进来 echo "吃了么" 阅读全文
posted @ 2017-08-27 22:06 汉企选手 阅读(68) 评论(0) 推荐(0) 编辑
摘要:<?phpecho date("Y-m-d H:i:s");$a=11;echo $a==1?"diao":"gunba";$a=0;while($a<10){ echo "{$a}<br>"; $a++;}function show(){ echo "hello";}function show() 阅读全文
posted @ 2017-08-23 22:34 汉企选手 阅读(68) 评论(0) 推荐(0) 编辑
摘要:1PHP定义变量用$ 2.PHP特殊定义方式$变量=<<<A A;后面A顶格写 3.PHP拼接字符用.JS用+ 4.PHP输出用echo 5.PHP里@抑制错误符号 6.$a=10; echo $a==10?"OK":"NO"; 7.&代表取变量地址 例如:$a=10;$b=&$a;echo $b; 阅读全文
posted @ 2017-08-20 20:43 汉企选手 阅读(116) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> *{ margin: 0px; padding: 0px; } .p{ width: 1360px; height: 2700px; /*borde 阅读全文
posted @ 2017-08-15 09:34 汉企选手 阅读(122) 评论(0) 推荐(0) 编辑
摘要:1、第一范式(1NF) 在任何一个关系数据库中,第一范式(1NF)是对关系模式的基本要求,不满足第一范式(1NF)的数据库就不是关系数据库。 所谓第一范式(1NF)是指数据库表的每一列都是不可分割的基本数据项,同一列中不能有多个值,即实体中的某个属性不能有多个值或者不能有重复的属性。如果出现重复的属 阅读全文
posted @ 2017-08-11 22:09 汉企选手 阅读(77) 评论(0) 推荐(0) 编辑
摘要:IE中: document.body.clientWidth ==> BODY对象宽度 document.body.clientHeight ==> BODY对象高度 document.documentElement.clientWidth ==> 可见区域宽度 document.documentE 阅读全文
posted @ 2017-08-07 21:25 汉企选手 阅读(280) 评论(0) 推荐(0) 编辑
摘要:不解的问题:表格里td能否用margin?覆盖z-index需要设置背景才能覆盖?表格与表格能否用float? 阅读全文
posted @ 2017-08-03 22:20 汉企选手 阅读(76) 评论(0) 推荐(0) 编辑