2017年11月27日
摘要: <?phpheader( 'Content-Type:text/html;charset=utf-8 '); include_once("conn/conn.php"); $id=$_GET["id"]; $sql='delete from user where id='.$id; $r=mysql 阅读全文
posted @ 2017-11-27 15:22 PHP`reader 阅读(165) 评论(0) 推荐(0) 编辑
  2017年11月24日
摘要: <!DOCTYPE html><html><style type="text/css">table.imagetable { font-family: verdana,arial,sans-serif; font-size:11px; color:#333333; border-width: 1px 阅读全文
posted @ 2017-11-24 11:52 PHP`reader 阅读(3892) 评论(0) 推荐(0) 编辑
  2017年11月23日
摘要: $(document).ready(function(){ $("#name").focus();//获得焦点 $("#name").blur(function(){//失去焦点 var name=$("#name").val(); if (name) { $.post("onename.php", 阅读全文
posted @ 2017-11-23 16:00 PHP`reader 阅读(175) 评论(0) 推荐(0) 编辑
摘要: $(document).ready(function(){ $("#zhuce").click(function(){ var name=$("#name").val(); var password=$("#password").val(); var sex=$("#sex").val(); var 阅读全文
posted @ 2017-11-23 10:06 PHP`reader 阅读(191) 评论(0) 推荐(0) 编辑
摘要: <?phpheader( 'Content-Type:text/html;charset=utf-8 '); include_once("conn/conn.php"); $name=$_POST["name"]; $password=$_POST["password"]; $sex=$_POST[ 阅读全文
posted @ 2017-11-23 10:05 PHP`reader 阅读(708) 评论(0) 推荐(0) 编辑
摘要: $host="localhost"; $db_user="root"; //数据库用户 $db_pass=""; //数据库密码 $db_name="class1"; //数据库 $timezone = "Asia/Shanghai"; $link=mysqli_connect($host,$db_ 阅读全文
posted @ 2017-11-23 10:04 PHP`reader 阅读(176) 评论(0) 推荐(0) 编辑