我在joomla的个性化HTML模块中有一个表单
<form id="search-restaurant" class="form-a" action="find.php">
<div>
......
</div>
<div class="encuentra-tastepoint-submit"><input type="submit" value="Submit" /></div>
当我点击“提交”按钮时,我想在我的数据库中执行一个sql查询,并在其他页面中返回该值。
我必须把muy find.php文件放在哪里。
在joomla 2.5中有一本手册或教程可以做到这一点
由于
答案 0 :(得分:0)
我假设find.php
是包含SQL查询代码的文件,在这种情况下,您可以将其保存在模块文件夹的根目录中(与module.xml位于同一位置)。 / p>
您还需要将require_once( dirname(__FILE__).'/'.'find.php' );
添加到your_module.php
。