Learning points:
1. LIMIT usage
2. Various parameters
3. Hyperlink call
First: Set up the digital paging module in the file; my file is (blog.php)
<span>//</span><span>分页模块</span><span>$_page</span> = <span>$_GET</span>['page'<span>]; </span><span>$_pagesize</span> = 10<span>; </span><span>$_pagenum</span> = (<span>$_page</span> - 1) * <span>$_pagesize</span><span>; </span><span>//</span><span>首页要得到所有的数据总和</span><span>$_num</span>=<span>mysql_num_rows</span>(_query("SELECT tg_id FROM tg_user"<span>)); </span><span>$_pageabsolute</span>=<span>$_num</span> / <span>$_pagesize</span>;
To Note that when fetching a set from the database
// we must re-read the result set every time instead of re-executing the SQL statement.
$_result = _query("SELECT tg_username,tg_sex,tg_face FROM tg_user ORDER BY tg_reg_time DESC LIMIT $_pagenum,$_pagesize");
Set the effect of paging loop
<span><div> <ul> <?php <span>for(<span>$i</span>=0;<span>$i</span>$_pageabsolute;<span>$i</span>++<span>){ </span><span>if</span> (<span>$_page</span> == (<span>$i</span>+1<span>)) { </span><span>echo</span> '<li><a href="blog.php?page='.(<span>%24i</span>+1).'">'.(<span>$i</span>+1).'</a></li>'<span>; }</span><span>else</span><span>{ </span><span>echo</span> '<li><a href="blog.php?page='.(<span>%24i</span>+1).'">'.(<span>$i</span>+1).'</a></li>'<span>; } } </span>?> </ul> </div></span>
Corresponding CSS
#page_num { height:20px; clear:both; padding:10px 0; position:relative; } #page_num ul { position:absolute; right:30px; height:20px; } #page_num ul li { float:left; width:26px; height:20px; } #page_num ul li a { display:block; width:20px; height:20px; line-height:20px; border:1px solid #333; text-align:center; text-decoration:none; } #page_num ul li a:hover,#page_num ul li a.selected { background:#666; font-weight:bold; color:#fff; }
There may be errors due to encoding. The solution is
<span><span>//</span><span> 分页模块</span><span>if</span> (<span>isset</span> ( <span>$_GET</span> ['page'<span>] )) { </span><span>//</span><span> 在数据不再数据范围内出错的解决方法</span><span>$_page</span> = <span>$_GET</span>['page'<span>]; </span><span>//</span><span> 是否为空,是否小于0,是否不是数字。//如果其中有一个是,那么就=1</span><span>if</span> (<span>empty</span> ( <span>$_page</span> )||<span>$_page</span> is_numeric</span>( <span>$_page</span><span> )) { </span><span>$_page</span> = 1<span>; } </span><span>else</span><span> { </span><span>$_page</span> = <span>intval</span> ( <span>$_page</span> ); <span>//</span><span> 如果是数字,但是小数,那么就$_page = intval($_page);转换成整数</span><span> } } </span><span>else</span><span> { </span><span>$_page</span> = 1<span>; } </span><span>$_pagesize</span> = 10<span>; </span><span>$_num</span> = _num_rows( _query ( "SELECT tg_id FROM tg_user"<span> ) ); </span><span>if</span> (<span>$_num</span>==0<span>) { </span><span>$_pageabsolute</span>=1<span>; }</span><span>else</span><span>{ </span><span>$_pageabsolute</span>=<span>ceil</span>(<span>$_num</span>/<span>$_pagesize</span><span>); } </span><span>//</span><span>当页码大于总页码的时候,就会返回到总页码的最后一页</span><span>if</span> (<span>$_page</span>><span>$_pageabsolute</span><span>) { </span><span>$_page</span>=<span>$_pageabsolute</span><span>; } </span><span>$_pagenum</span> = (<span>$_page</span> - 1) * <span>$_pagesize</span>;
The above introduces the digital paging effect of the PHP self-study project, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver CS6
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)
