【发布时间】:2016-10-08 16:15:53
【问题描述】:
我创建了一个自定义 html 表单模块,因为我不喜欢将 joomla 扩展用于表单等。原因是安装新的表单扩展需要我全面了解扩展,我觉得这很烦人。
这是我的自定义 html 表单代码:
<form action="HereYouGo.php" method="post">
<center>
<input type="text" name="fullname" placeholder="Full Name" size="25" required>
<input type="text" name="email" placeholder="Email" size="25" required>
<input type="password" name="psw" placeholder="Password" size="25" required>
</center><br>
<input type="submit" value="Here You Go!"/><br><br>
<center>
<h4>By clicking "Here You Go!" you agree with our terms & conditions and private policy.</h4>
</center>
</form>
谁能帮帮我?另外,我应该将我的响应 PHP 脚本放在 joomla 目录中的哪个文件夹中。在我的情况下,我特别指的是“HereYouGo.php”
非常感谢您的帮助
【问题讨论】:
-
这不是您问题的答案。但我只是想我应该让你知道
<center>标签已经是deprecated。有一段时间了 -
感谢您的更新...它仍然有效
标签: php html forms joomla joomla2.5