我安装了RS form Pro。我创建了一个from和when提交时我已经将Form Action更改为另一个处理表单数据的站点,然后我返回到我的joomla站点。
Form Location : www.myjoomlasite.com/index.php
Form Properties -> Form Attributes -> Action = www.mysite.com/process.php
Return URL= www.myjoomlasite.com/index.php
当用户从www.myjoomlasite.com/index.php
表单的操作提交表单www.mysite.com/process.php
时,问题是什么,进程文件正确获取值但我没有在My RS中获取任何表单提交值零件。如何在joomla中进行此过程,以便我在两个站点上获取数据。
答案 0 :(得分:-1)
您应该使用适当的控制器来处理表单,并使用"www.mysite.com/process.php"
您正在制作可能容易受到攻击的额外入口点。
并在控制器中处理表单。以下链接将启动所需的控制器。
www.mysite.com/index.php?option=com_component&controller=myController
详细信息JOOMLA MVC