search
HomeBackend DevelopmentPHP Tutorial 怎样用smarty的模板显示mysql数据库里的表格显示出来?该如何处理

怎样用smarty的模板显示mysql数据库里的表格显示出来?
本人新手刚接触php.对于smarty更是少,前面用php写了个页面,简单的用数据库的内容显示用表的方式显示到网页上.
但是问题来了,表越来越多,刷新一下页面每次都会占大部分CPU,发现这样不行,于是搜索到了有关缓存的问题.接着发现了 smarty
这几天也看了不一些例子,和一些视频,自己也做过很多测试,还是不知道如何下手讲数据库表用 smarty模板 显示出来..
表格很简单.如下
数据库表名.my_db
id 名字 性别 年龄 身高 体重 身份证号码 家庭住址 联系电话
1 张三 男 32 173cm 66 100******** 北京市东城区 134*******
2 李四 男 30 178cm 65 100******** 北京市西城区 134******* 
3 王五 男 30 179cm 63 100******** 北京市东城区 134******* 
4 赵六 男 29 181cm 67 100******** 北京市东城区 186******* 
5 小红 女 12 143cm 40 100******** 北京市房山区 无电话  
6 小明 男 14 163cm 55 100******** 北京市房山区 无电话  
7 小李 男 12 155cm 45 100******** 北京市西城区 无电话
我想要显示的是 按年龄的大小 显示到 网页上但是用smarty我真的不知道如何下手,不知道该怎么写..论坛上也没找到这样的例子应该怎么写,希望会的朋友给我做个式利帮我写一下.非常感谢!! 
一下是热心人给出的源码:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
//table方法,用来查询数据库
function table(){
   //初始化连库函数,这里$conn是之前实例化的pdo
   globle $conn;
  //按照条件查询
  $sel=$conn->query("select * from my_db order by age");
  //返回变量到函数
  return $sel->fetchAll();
}
$smarty->assign('table',table());


但是 pdo 没用过, 能不能用这样的..
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
include("smarty_inc.php");
$con = mysql_connect("127.0.0.1","user","123456");
if (!$con)
  {
die('Could not connect: ' . mysql_error());
  }
//$db=new pdo('mysql:127.0.0.1;mysql','user','123456','true');
mysql_query("set names gbk");
mysql_select_db("test",$con);
$result=mysql_query("select * from my_db");


应该怎样改成 然后用这样的方式呈现!


------解决方案--------------------
php文件
PHP code
<?php include("smarty_inc.php");
$con = mysql_connect("127.0.0.1","user","123456");
if (!$con)
    die('Could not connect: ' . mysql_error());

mysql_query("set names gbk");
mysql_select_db("test",$con);
$result=mysql_query("select * from my_db order by age");
while($row=mysql_fetch_assoc($result)){
    $table[]=$row;
}
$smarty->assign('table',$table);
<br><font color="#e78608">------解决方案--------------------</font><br>前台利用smarty的assign赋值给变量。然后利用smarty的section进行循环显示。 <div class="clear">
                 
              
              
        
            </div>
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
mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

mysql需要commit吗mysql需要commit吗Apr 27, 2022 pm 07:04 PM

在mysql中,是否需要commit取决于存储引擎:1、若是不支持事务的存储引擎,如myisam,则不需要使用commit;2、若是支持事务的存储引擎,如innodb,则需要知道事务是否自动提交,因此需要使用commit。

mysql-connector是什么mysql-connector是什么May 12, 2022 pm 04:04 PM

“mysql-connector”是mysql官方提供的驱动器,可以用于连接使用mysql;可利用“pip install mysql-connector”命令进行安装,利用“import mysql.connector”测试是否安装成功。

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),