影响PHP+MYSQL执行速度的写法对比
作者:bea
[code]<?php include_once("../db.php"); if($_GET[x2]==0and$_GET[x1]==0) { $t="s1=''"; }else { if($_GET[x2]!=0) { $t="x2='$_GET[x2]'"; }else if($_GET[x1]!=0) { $t="x1='$_GET[x1]'andx2=0"; } } $query="selectcount(*)fromask_memberwhere$t"; $
[code]<?php include_once("../db.php"); if($_GET[x2]==0 and $_GET[x1]==0) { $t=" s1='' "; }else { if($_GET[x2]!=0) { $t=" x2='$_GET[x2]' "; }else if($_GET[x1]!=0) { $t=" x1='$_GET[x1]' and x2=0 "; } } $query = "select count(*) from ask_member where $t "; $result2 = mysql_db_query($DataBase, $query); $r3 = mysql_fetch_array($result2); $amount=$r3[0]; $page_size=5; if($amount%$page_size==0 and $amount>0) { $pagecount=($amount/$page_size); }else { $pagecount=intval($amount/$page_size)+1; } if($_GET
1
2
3
4
5
6
7
下一页
阅读全文
有用 | 无用
1
2
3
4
5
6
7
下一页
阅读全文
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 自动分页的不完整解决方案
- 用php实现像JSP,ASP里Application那样的全局变量
- 新手配置 PHP 调试环境(IIS+PHP+MYSQL)
- phpfans留言版用到的数据操作类和分页类
- 如何隐藏你的.php文件
- SMARTY学习手记
- 笑谈配置,使用Smarty技术
- Smarty模板快速入门
- 菜鸟学PHP之Smarty入门
- 推荐php模板技术[转]
- 推荐个功能齐全的发送PHP邮件类
- php和js交互一例-PHP教程,PHP应用
- URL Rewrite的设置方法
- 帖几个PHP的无限分类实现想法~
- PHP+MYSQL开发工具及资源收藏
- 分享PHP入门的学习方法
- php中常用编辑器推荐
- PHP中的日期处理方法集锦
- PHP语法速查表