全选,反选,搜索,分页,批量删除,删除

//连接数据库
@mysql_connect('127.0.0.1','root','root');
//选择数据库
mysql_select_db('ajax');
//设置字符集
mysql_query('set names utf8');
//拼写sql语句
$sql="select count(id) as count from lianxi";
$str=mysql_query($sql);
$results=mysql_fetch_assoc($str);
$count=$results['count'];
//设置每页数据条数
$number=3;
//总页数
$page_count=ceil($count/$number);
//默认页数
$page=isset($_GET['page'])?$_GET['page']:1;
//判断页数合法性
if($page<=0){
    $page=1;
}
if($page>$page_count){
    $page=$page_count;
}
//从0开始
$state=($page-1)*$number;
//查询数据
$sqll="select * from lianxi limit $state,$number";
//取结果
$result=mysql_query($sqll);
?>
charset="utf-8"/>
type="text" id="sousuo">type="button" value="搜索" οnclick="check_ss();">
id="u_sousuo">
id="fenye"> border="1"> while(@$arr=mysql_fetch_assoc($result)){ ?> } ?>
序号 名称 状态 操作
type="checkbox" name="checkbox" id="$arr['id']?>">$arr['id']?> $arr['name']?> href="javascript:void(0);" οnclick="check_sd(this,$arr['id']?>);">$arr['state']?"锁定":"未锁定";?> href="javascript:void(0);" οnclick="check_sc(this,$arr['id']?>);">删除
colspan="7" align="center"> type="checkbox" id="quan" οnclick="check_quan();">全选/全不选 type="button" id="fan" οnclick="check_fan();" value="反选"> type="button" id="pl" οnclick="check_pl();" value="批量删除"> href="javascript:void(0);" οnclick="check_fenye(1);">首页 href="javascript:void(0);" οnclick="check_fenye($page+1?>);">下一页 href="javascript:void(0);" οnclick="check_fenye($page-1?>);">上一页 href="javascript:void(0);" οnclick="check_fenye($page=$page_count?>);">尾页
style="width:600px;float:left;">
  • src="upload/14697554706662.jpg" width="145" height="100" alt=""/>
  • src="upload/14697554706662.jpg" width="145" height="100" alt=""/>
  • src="upload/14697554706662.jpg" width="145" height="100" alt=""/>
  • type='checkbox'>
  • type='checkbox'>
  • type='checkbox'>

你可能感兴趣的:(php,Jquery)