源碼:
test.php
<?php
require_once "HTML/QuickForm.php";
require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
require_once 'link/myload.php';
$form = new HTML_QuickForm('frmTest', 'get');
$form->addElement('header', 'hdrTesting', 'Smarty&HTML/QuickForm聯合編程實驗');
$form->addElement('text', 'txtFirstName', '貴姓?');
$form->addElement('text', 'txtLastName', '尊名?');
$form->addElement('text', 'txtAge', '年齡?');
$form->addElement('text', 'txtTelephone', '電話?');
$form->addElement('reset', 'btnClear', '復位');
$form->addElement('submit', 'btnSubmit', '提交');
if ($form->validate()) {
# If the form validates then freeze the data
$form->freeze();
}
// Create the template object
$tpl =$smarty=& new Smarty_my;
$tpl->compile_check = true;
// Create the renderer object
$renderer =& new HTML_QuickForm_Renderer_ArraySmarty($tpl);
// build the HTML for the form
$form->aclearcase/" target="_blank" >ccept($renderer);
// assign array with form data
$tpl->assign('form_data', $renderer->toArray());
// parse and display the template
$tpl->display('my.tpl');
?>
mylink.php
<?php
// load Smarty library
define('myclude',/usr/share/php/smarty');
require(myinclude.'/libs/Smarty.class.php');
//setup.php是一個很好的加載應用程序的類庫文件(就是擴展類)
//例如你可以在index文件里包含它
class Smarty_my extends Smarty {
function Smarty_my() {
// Class Constructor. These automatically get set with each new instance.
//類構造函數.創建實例的時候自動配置
$this->Smarty();
$this->template_dir = '/var/www/apache2-default/smarty/xsgl/templates/';
$this->compile_dir = '/var/www/apache2-default/smarty/xsgl/templates_c/';
$this->config_dir = '/var/www/apache2-default/smarty/xsgl/configs/';
$this->cache_dir = '/var/www/apache2-default/smarty/xsgl/cache/';
$this->caching = true;
$this->assign('app_name','xsgl');
}
}
模板文件my.tpl
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- $Id: smarty-guide.tpl,v 1.1 2005/03/03 19:26:54 kae Exp $ -->
<head>
<link rel="stylesheet" type="text/css" href="css/my.css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
</head>
<body>
<h2>
</h2>
<form >
<!-- Display the fields -->
<table>
<tr>
<th></th>
<td></td>
<th></th>
<td></td>
</tr>
<tr>
<th></th>
<td></td>
<th></th>
<td></td>
</tr>
<!-- Display the buttons -->
<tr>
<td align="center" colspan="4">
</td>
</tr>
<!-- Display the copyright -->
<tr>
<td style="font-size:11px; color: navy; text-align: center" colspan="4">
©2005 陳剛 實驗
</td>
</tr>
</table>
層疊式樣表文件my.css
body {
background-color: #10F2E7;
}
table
n {
font-size: small;
font-family: arial, helvetica, sans-serif;
}
table {
overflow: scroll;
margin: 0.1px;
font-weight: lighter;
font-family: arial, helvetica, sans-serif;
}
原文轉自:http://www.anti-gravitydesign.com