search
HomeBackend DevelopmentPHP TutorialImplement paging with php and ajax_PHP tutorial
Implement paging with php and ajax_PHP tutorialJul 21, 2016 pm 03:53 PM
ajaxphpPaginationbackBackstageaccomplishdatauseexperienceOwnwantpage

I have summarized some fart experiences
1. After using ajax to post data to the background page, you need to reconnect to the database. Don’t think that it is enough to connect with the previous session
2. In order to deal with the problem of returning garbled characters, I After adding header("Content-Type:text/html;charset=GB2312");, it can be displayed normally. Later, when I checked it in firefox, I was prompted to download this webpage. After searching a lot of information on the Internet, I got a vague understanding. There is a grammatical error in the web page code. For security reasons, Firefox will not display it directly but prompts for download. I rechecked the statement just now and found that I wrote an extra "". After removing it, the problem was solved, haha, so If you encounter such a problem, check the html tag carefully. After all, Firefox is not as smart as IE
3. Finally, as a web site developer, you must be responsible. Don’t think that everything will be fine if you pass the test in IE. After all, not everyone uses IE, and you have to do more tests in other browsers to show your professionalism

ajax script:

Copy the code The code is as follows:

<script> <BR>function viewpage(p){ <BR>if(window.XMLHttpRequest){ <BR>var xmlReq = new XMLHttpRequest(); <BR>} else if(window.ActiveXObject) { <BR>var xmlReq = new ActiveXObject('Microsoft.XMLHTTP'); <BR>} <BR>var formData = "page="+p; <BR>xmlReq.onreadystatechange = function(){ <BR>if(xmlReq.readyState == 4){ <BR>document.getElementById('content2').innerHTML = xmlReq.responseText; <BR>} <BR>} <BR>xmlReq.open("post", "hotel_list.php", true); <BR>xmlReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); <BR>xmlReq. send(formData); <BR>return false; ><BR>The code is as follows:<BR><div class="codebody" id="code62607"><br><br>header("Content-Type:text/html;charset=GB2312");  <BR>$pagesize=10;  <BR>//echo $_POST['page'];  <BR>$result = mysql_query("Select count(DISTINCT hotelname) FROM ".TBL_HOTELS);  <BR>$myrow = mysql_fetch_array($result);  <BR>$numrows=$myrow[0];  <br><br>$pages=intval($numrows/$pagesize);  <BR>if ($numrows%$pagesize)  <BR>$pages++;  <BR>if (isset($_POST['page'])){  <BR>$page=intval($_POST['page']);  <BR>}  <BR>else{  <BR>//设置为第一页  <BR>$page=1;  <BR>}  <BR>$first=1;  <BR>$prev=$page-1;  <BR>$next=$page+1;  <BR>$last=$pages;  <BR>//计算记录偏移量  <BR>$offset=$pagesize*($page - 1);  <BR>//读取指定记录数  <BR>$result=mysql_query("select `hotelname` , count( * ) from ".TBL_HOTELS." GROUP BY `hotelname` order by id desc limit $offset,$pagesize");  <BR>$num = mysql_num_rows($result);  <BR>while ($row = mysql_fetch_array($result,MYSQL_NUM)) {  <BR>$hotelname[] = $row[0];  <BR>$countpeople[] = $row[1];  <BR>}  <BR>for($a=0;$a<$num;$a++)  <BR>{  <BR>//$result=mysql_query("select count(title) from " . TBL_Comments ." where `title`="".$title[$a].""");  <BR>//$row = mysql_fetch_row($result);  <BR>echo "<TABLE style="MARGIN-BOTTOM: 20px" cellSpacing=0 cellPadding=0 width=100% border=0>n";  <BR>echo "<TBODY>n";  <BR>echo "<TR>n";  <BR>echo "<TD style="PADDING-TOP: 5px" vAlign=top align=left width=80>n";  <BR>//rating_bar($title[$a],5);  <BR>echo "n";  <BR>echo "<TD style="PADDING-TOP: 5px" align=left width=100%><A title=$hotelname[$a] style="FONT-SIZE: 14px" href=#>$hotelname[$a]n";  <BR>echo "n";  <BR>echo " <TR>n";  <BR>echo "<TD>n";  <BR>echo "<TD style="PADDING-LEFT: 0px">n";  <BR>echo "<img src="/static/imghwm/default1.png" data-src="images/comment.gif" class="lazy"   border=0 alt="Implement paging with php and ajax_PHP tutorial" >  推荐人数:($countpeople[$a]) |n";  <BR>echo "<SPAN>平均分:<STRONG> (".$count."票) | 评论数:()n";  <BR>echo "n";  <BR>}  <BR>echo "<TABLE  style="max-width:90%" cellSpacing=0 cellPadding=0 width="100%"";  <BR>echo "border=0>";  <BR>echo "<TBODY><TR><TD colSpan=3 height=20>";  <BR>echo "<DIV align=center>";  <BR>echo "<P align=left><FONT color=red>第".$page."页/总".$pages."页 | 总".$numrows."条 | ";  <BR>if ($page>1) echo "<a onclick="viewpage(".$first.")" href='#'>首页 | ";  <BR>if ($page>1) echo "<a onclick="viewpage(".$prev.")" href='#'>上页 | ";  <BR>if ($page<$pages) echo "<a onclick="viewpage(".$next.")" href='#'>下页 | ";  <BR>if ($page<$pages) echo "<a onclick="viewpage(".$last.")" href='#'>尾页";  <BR>echo "转到第 <INPUT maxLength=3 size=3 value=1 name=goto_page> 页 <INPUT hideFocus onclick="viewpage(document.all.goto_page.value)" type=button value=Go name=cmd_goto>";  <BR>echo "</script>
";

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/318828.htmlTechArticleI have summarized some fart experiences 1. After using ajaxpost data to the background page, you need to reconnect to the database. Don’t think Just connect with the previous session. 2. In order to deal with the problem of returning garbled characters...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.