免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2120 | 回复: 3
打印 上一主题 下一主题

smarty问题,求助 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-08 10:55 |只看该作者 |倒序浏览
问题如下,我用PHP+smarty做了个分页,分页正常显示了,但是内容列表却显示不了,对smarty不甚了解,还请大家指导,我把代码贴出来

PHP file
<?php
/*
&nbsp;* Created on 2008-4-7
&nbsp;*
&nbsp;* To change the template for this generated file go to
&nbsp;* Window - Preferences - PHPeclipse - PHP - Code Templates
&nbsp;*/

&nbsp;&nbsp;include_once("../smarty/temp/Smarty.class.php"); //包含smarty类文件

define("NUM",8 ); //定义每次显示的新闻条数

require('../include/mysql.php');
$smarty = new Smarty(); //建立smarty实例对象$smarty

$smarty->templates_dir = "../smarty/china/"; //设置模板目录

$smarty->compile_dir = "../smarty/templates_c"; //设置编译目录

$smarty->cache_dir = "../smarty/cache"; //设置缓存目录

$smarty->cache_lifetime = 60 * 60 * 24; //设置缓存时间

$smarty->caching = false; //这里是调试时设为false,发布时请使用true

$smarty->left_delimiter = "<{"; //设置左边界符

$smarty->right_delimiter = "}>"; //设置右边界符

$db = mysql_connect("$db_server", "$db_username", "$db_password") or die("数据库连接错误!");
mysql_select_db("$db_name", $db);
mb_internal_encoding("UTF-8");
//silk line list

&nbsp;&nbsp;&nbsp;&nbsp;//$smarty->caching = false;   

&nbsp;&nbsp;&nbsp;&nbsp;$lady_url ="http://192.168.0.141/china/silk.php";
&nbsp;&nbsp;&nbsp;&nbsp;$content = array();
&nbsp;&nbsp;&nbsp;&nbsp;$pagesize = 1;
&nbsp;&nbsp;&nbsp;&nbsp;$strQuery=  "SELECT id,line_name,line_upload,line_intro,line_vprice from line_lines where line_show=0 order by id desc";
&nbsp;&nbsp;&nbsp;&nbsp;$result = mysql_query($strQuery);
&nbsp;&nbsp;&nbsp;&nbsp;//结果集

&nbsp;&nbsp;&nbsp;&nbsp;$total = mysql_num_rows($result);
&nbsp;&nbsp;&nbsp;&nbsp;//记录条数

&nbsp;&nbsp;&nbsp;&nbsp;$totalpage = ceil($total/$pagesize);
&nbsp;&nbsp;&nbsp;&nbsp;//总页数

&nbsp;&nbsp;&nbsp;&nbsp;$page = ceil($_GET["pos"])+1;
&nbsp;&nbsp;&nbsp;&nbsp;//当前页

&nbsp;&nbsp;&nbsp;&nbsp;$strQuery= "limit ".($pagesize * ($page-1)).", ".$pagesize;
&nbsp;&nbsp;&nbsp;&nbsp;//语句

&nbsp;&nbsp;&nbsp;&nbsp;$idx = 0;
&nbsp;&nbsp;&nbsp;&nbsp;$result = mysql_query($strQuery);
&nbsp;&nbsp;&nbsp;&nbsp;while ($row = @mysql_fetch_array($result))
{ &nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$array[] = array("id"=>$row["id"],
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"name"=>$row["line_name"],
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"price"=> $row["line_vprice"],
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'image'=>$row['line_upload'],
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'intro'=>$row['line_intro'],
);&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;$smarty->assign("line_list", $array);
&nbsp;&nbsp;&nbsp;&nbsp;unset($array);
&nbsp;&nbsp;&nbsp;&nbsp;$smarty->assign('totalpage',$totalpage);
&nbsp;&nbsp;&nbsp;&nbsp;$smarty->assign('lady_url',$lady_url);
&nbsp;&nbsp;&nbsp;&nbsp;$smarty->display("silk.tpl",$page);

mysql_close($db);
$smarty->display("../../smarty/china/silk.tpl");
?>


TPL:
  1.   <{section name=loop loop=$line_list}>
  2.     <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" class="shtour2">
  3.       <tr>
  4.         <td width="82%" height="20" class="shtour2"><h3><{$line_list[loop].name}></h3></td>
  5.         <td width="18%" align="center" class="STYLE5">$<{$line_list[loop].price}></td>
  6.       </tr>
  7.       <tr>
  8.         <td colspan="2"><table width="590" border="0" align="center" cellpadding="0" cellspacing="0">
  9.             <tr>
  10.               <td width="490" height="50" align="left" class="shtour2"><{$line_list[loop].intro}></td>
  11.               <td width="100" rowspan="2" align="center"><img src="../<{$line_list[loop].image}>" width="90" height="60" border="1"></td>
  12.             </tr>
  13.             <tr>
  14.               <td height="20" align="left" class="shtour2">Detail</td>
  15.             </tr>
  16.         </table></td>
  17.       </tr>
  18.     </table>
  19.     <{sectionelse}>
  20.         对不起,没有任何新闻输入!
  21.          <{/section}>
  22.     <br>
  23.     <{pager rowcount=$totalpage limit=1 shift=1 no_first=true separator="|" class_text="pager_text" txt_pos="side"}>
  24.     <p>&nbsp;</p></td>
  25.   </tr>
  26. </table>
复制代码

论坛徽章:
0
2 [报告]
发表于 2008-04-08 11:09 |只看该作者
效果图

论坛徽章:
0
3 [报告]
发表于 2008-04-08 12:08 |只看该作者
数据库没数据, $line_list为空.

论坛徽章:
0
4 [报告]
发表于 2008-04-08 12:34 |只看该作者
  1. mysql> use tourochi_tour;
  2. Database changed
  3. mysql> SELECT id,line_name,line_upload,line_intro,line_vprice from line_lines wh
  4. ere line_show=0 order by id desc;
  5. +----+--------------------------------------------------------------------------
  6. -----+-----------------------------------------------+--------------------------
  7. --------------------------------------------------------------------------------
  8. --------------------------------------------------------------------------------
  9. --------------------------------------------------------------------------------
  10. -------------------------------------------------+-------------+
  11. | id | line_name
  12.      | line_upload                                   | line_intro



  13.                                                  | line_vprice |
  14. +----+--------------------------------------------------------------------------
  15. -----+-----------------------------------------------+--------------------------
  16. --------------------------------------------------------------------------------
  17. --------------------------------------------------------------------------------
  18. --------------------------------------------------------------------------------
  19. -------------------------------------------------+-------------+
  20. | 84 | 10-day tour to Beijing, Xian, Guilin and Hong Kong
  21.      | /uploadfiles/lines/2008/03/xian1.jpg          | This fatastic 12-day tour
  22. will show you the elite sceneries of China. The imposing Great Wall, limpid Li
  23. River, ancinet Terracotta Warriors in Xian , a modern Shanghai and "the Pearl of
  24. the Orient" Hong Kong are all included in this tour. You may have a comprehensi
  25. ve experience of this magic nation.              |     1550.00 |
  26. | 83 | Elite Tour of China
  27.      | /uploadfiles/lines/2008/03/suzhou garden3.jpg | China covers a large area
  28. , ranking third in the world. It is granted with diverse sceneries. In this 12-d
  29. ay tour you may experience for yourself the differences

  30.                                                  |     1458.00 |
  31. | 82 | East China Tour
  32.      | /uploadfiles/lines/2008/03/suzhou garden4.jpg | Enjoy sightseeing of beau
  33. tiful Chinese gardens and small steams winding around featured ancient houses. A
  34. lso you may wander arouns old stone arch bridges.

  35.                                                  |      583.00 |
  36. | 81 | Sightseeing of Chinese Ancient Capitals
  37.      | /uploadfiles/lines/2008/03/summer palace.jpg  | Many dynasties rose and f
  38. ell in China鈥檚 long histiry. They left many valuable historical relics which w
  39. e can visit today. Don鈥檛 hesitate. Come to China and visit those imperial for
  40. yourself
  41.                                                      |     1410.00 |
  42. | 80 | Beijing and Shanghai 6 Days Tour
  43.      | /uploadfiles/lines/2008/03/beijing~.jpg       | Beijing, capital of China
  44. , is also the political center. Its long history left it with many cultural heri
  45. tages.  Shanghai, a metropolitan city, is economic center of China. In this 6-da
  46. y tour, we will guide you to explore these two cities.
  47.                                                  |      529.00 |
  48. | 79 | Shanghai, Beijing and Kongfu 11- day Experience
  49.      | /uploadfiles/lines/2008/03/shaolin.jpg        | Imposing Beijing, modern
  50. Shanghai and mysterious Shaolin Kungfu, while refering to China, those words may
  51. appear in your mind. In this tour you have the opportunity to visit those place
  52. s for yourself. Come and experience this magic nation.
  53.                                                  |     1199.00 |
  54. | 78 | Exotic Experience in West China
  55.      | /uploadfiles/lines/2008/03/hohhot5.jpg        | In this 8-day tour you ha
  56. ve the chance to climb the imposing Great Wall and explore the elegant Summer Pa
  57. lace and other historical relics in Beijing. Another highlight of this tour is t
  58. he beauty of natural grassland in Hohhot. Anyway you will find a different China
  59. in this tour.                                   |      739.00 |
  60. | 76 | Beijing and East China Tour
  61.      | /uploadfiles/lines/2008/03/optv.jpg           |



  62.                                                  |     1328.00 |
  63. | 75 | Beijing Shanghai and Mt. Yellow
  64.      | /uploadfiles/lines/2008/03/west lake.jpg      |



  65.                                                  |     1119.00 |
  66. | 74 | 11-day tour to Beijing, Shanghai, and Water Towns
  67.      | /uploadfiles/lines/2008/03/west lake2.jpg     |



  68.                                                  |     1139.00 |
  69. | 73 | 14-day tour around Beijing, Mt.Yellow,Suzhou, Zhou Village, Xian and Hang
  70. zhou | /uploadfiles/lines/2008/03/mt. yellow.jpg     | A 14-Day private tour tou
  71. r includes highlight cities in China, such as Beijing, Shanghai, Xian. Mt. Yello
  72. w and also feature water towns of South China, such as Zhouzhuang. Gardens in Su
  73. zhou is also a must while travelling in China.
  74.                                                  |     1409.00 |
  75. | 71 | 10 Days Tour to Beijing, Xian,Guilin,Yangshuo and Shanghai
  76.      | /uploadfiles/lines/2008/03/guilin.jpg         | This wonderful tour is a
  77. combination of the latter-day China together with the Ming-Qing royal collapse(B
  78. eijing), the ancient attraction of China (Xi鈥檃n), a cosmopolitan city(Shanghai
  79. ), and Guilin鈥檚 extremely charming natural sceneries.
  80.                                                      |     2399.00 |
  81. | 70 | 8 Days Tour Beijing, Shanghai and Xian
  82.      | /uploadfiles/lines/2008/03/forbidden city.jpg | Long history granted Chin
  83. a with many great relics. And deligent Chinese never stop construncting a strong
  84. nation. So travelling in China you will view both ancient cultures and modern m
  85. iracles. The Great Wall. Forbidden City, and Terracotta Warriors, as well as mod
  86. ern Shanghai are all included in this itinerary. |     1356.00 |
  87. | 69 | Beijing+Xian+Guilin+Yangshuo+Shanghai 11-Day luxury tour
  88.      | /uploadfiles/lines/2008/03/beijing1.jpg       | This wonderful tour is a
  89. combination of the latter-day China together with the Ming-Qing royal collapse(B
  90. eijing), the ancient attraction of China (Xi鈥檃n), a cosmopolitan city(Shanghai
  91. ), and Guilin鈥檚 extremely charming natural sceneries.
  92.                                                      |     1135.00 |
  93. | 68 | 7 Days Tour Shanghai/Zhouzhuang/Suzhou/Wuxi/Nanjing
  94.      | /uploadfiles/lines/2008/02/shanghai1.jpg      | Enjoy sightseeing of beau
  95. tiful Chinese gardens and small steams winding around featured ancient houses. A
  96. lso you may wander arouns old stone arch bridges.

  97.                                                  |      819.00 |
  98. +----+--------------------------------------------------------------------------
  99. -----+-----------------------------------------------+--------------------------
  100. --------------------------------------------------------------------------------
  101. --------------------------------------------------------------------------------
  102. --------------------------------------------------------------------------------
  103. -------------------------------------------------+-------------+
  104. 15 rows in set (0.20 sec)

  105. mysql>
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP