联系官方销售客服
1835022288
028-61286886
我想在页面中获取input框的值进行数据库查询,我在custom.php中写了查询方法,需要传参,但是不知道怎么将input框中的传入查询方法。
custom.php中的自定义函数:
function my_recoWord($theme,$level) { $sql = "select * from dr_app_mydata_2 where ".$theme1." LIKE CONCAT('%',theme,'%') and level =".$level1; echo $sql; $rt = \Phpcmf\Service::M()->db->query($sql); if ($rt) { $rows = $rt->getResultArray(); if(!$rows){ echo '暂无推荐'; } foreach ($rows as $t) { echo $t['name'] ; echo ' '; } } }
模板中:
<label>{function name=my_recoWord param1=input框参数1 param2=input框参数2 cache=300}{$t}{/function}</label>