search
HomeBackend DevelopmentPHP TutorialRecommended php template technology [transfer]_PHP tutorial

Recommended php template technology [transfer]_PHP tutorial

Jul 21, 2016 pm 03:58 PM
indexphpcodetechnologyrecommendtemplatesitestructurechange

Site structure

Code:
site
┗includes
┗class.inc
┣templet
┗index.htm
┗content .htm
┣index.php
┗content.php
Library structure

Code:
-- Database: `test`
-- Table structure `test`
CREATE TABLE `test` (
`id` smallint(3) NOT NULL auto_increment,
`name` varchar(10) NOT NULL default '',
`sex` enum('male' ,'Female') NOT NULL default 'Male',
`age` smallint(2) NOT NULL default '0',
`email` varchar(20) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1;
--------------- class.inc file --------

Copy code The code is as follows:
class mycon{
private $myhost;
private $myuser;
private $mypwd;
function mycon($host="localhost",$user="root",$pwd=""){
$this->myhost = $host;
$ this->myuser = $user;
$this->mypwd = $pwd;
}
function connect(){
return mysql_connect($this->myhost,$this- >myuser,$this->mypwd);
} }
}

class template{
private $source_file;
function get_file($filename){
$ this->source_file = file_get_contents($filename);                                                                                           preg_replace("| {".$tags."}|",$vals,$this->source_file);
}else{
$an = count($tags);
for($i=0; $i $tags[$i] = "|{".$tags[$i]."}|";
} }
return preg_replace($tags, $vals,$this->source_file);                                                                 -------------index.htm file------------------



Copy code

The code is as follows:


Homepage
>

/caption>                                                                                                                                                                             > {All lists}

/TD>                                                             >




------------------list.htm file------- ------------



Copy code

The code is as follows:

   🎜>------------------content.htm file-----------------------



Copy code
The code is as follows: TITLE> =#000000 style="font-size:12px">                                                        60>Name
     
   
                                                                                       ;
{name} {gender} {age} {email}{Name}
Gender TD > {Age}





------------- ---index.php file--------------------------
Copy code The code is as follows:
include("includes/class.inc");
$tmpl =new templet;
$mycon =new mycon;
$con = $mycon-> connect();
mysql_select_db("test",$con);
$lim = 20; //Number of rows displayed per page
$p = ($_GET[p]) ? $_GET[p ] : 1; //Current page number

/***** Start generating list *****/

$lists = "";
$tmpl->get_file("templet/list. htm");
$tags = array("Member ID", "Name", "Gender", "Age", "email"); // Should be in the same order as the table fields
$rs = mysql_query( "select * from test order by id desc limit ".($p-1)*$lim.",$lim");
while($row=mysql_fetch_row($rs)){
$lists . = $tmpl->parse($tags,$row);
}

/***** List generation completed, paging begins *****/

$tmpl->get_file("templet/index .htm");
$rn = @mysql_result(mysql_query("select count(id) from test"),0); //Total number of records
$ps = ceil($rn/$lim); //Total number of pages
$pagination = "Homepage ";
if($p>1) $pagination .= "";
else $pagination .= "";
$pagination . = "Previous page
"; "
if($p";  
else $pagination .= ""; Last page "; "

/***** Pagination completed, page generation begins *****/ ","Total number of items","Number of items per page","Paging"); 
 $vals = array($lists,$rn,$lim,$pagination); 
 echo $tmpl-> parse($tags,$vals);
?>



---------------- content.php file ---------------


Copy code The code is as follows: include("includes/class.inc");
$tmpl =new templet;
$mycon =new mycon;
$con = $mycon->connect();
mysql_select_db( "test",$con);
$tmpl->get_file("templet/content.htm");
$rs = mysql_query("select * from test where id=$_GET[id]") ;
$row=@mysql_fetch_row($rs);
unset($row[0]); //Remove redundant fields read from the table, align replacements, or list fields in the SELECT statement
$tags = array("name", "gender", "age", "email");
echo $tmpl->parse($tags,$row);
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/317637.htmlTechArticleSite structure code: Site┗includes ┗class.inc ┣templet ┗index.htm ┣list.htm ┗content. htm ┣index.php ┗content.php Library structure code: --Database:`test` --Table structure...
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 Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

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

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

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.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

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

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

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

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

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

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

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.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

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

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

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

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

Video Face Swap

Video Face Swap

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

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.