Heim  >  Artikel  >  Backend-Entwicklung  >  smarty查询方法

smarty查询方法

WBOY
WBOYOriginal
2016-06-23 13:24:45916Durchsuche


<form>    <input type="text" id="t" value="" name="t"/>	<input type="button"  class="anniu4" value="查询" onclick="window.location='city.php?module=query'"/>    </form>
这是查询按钮的代码  
<?phprequire_once('adminbase.php');require_once('CityBusiness.php');//用户管理$module = $_REQUEST["module"];$city = new CityBusiness();if (!isset($module) || $module == "list"){	$smarty->assign("pageTitle","城市管理");	$list = $city->getAllList();	$smarty->assign("list",$list);	$smarty->display('admin/city/list.tpl');}else if ($module == "query"){    			$smarty->display('admin/city/query.tpl');}
query那个我怎么添加代码


回复讨论(解决方案)

没人回复么?  我要给分了。。。。。。

其实我都不知道你想干什么

其实我都不知道你想干什么


不知道就对了  哈哈  想结个贴而已
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn