如何将URL参数传递给joomla模块

时间:2011-05-09 14:28:13

标签: joomla joomla1.5

我有自己的好链接http://www.link.com/sometext,现在我会“增强”这个有机会写http://www.link.com/sometext?parameters=myParam之类的东西,因为我需要将参数发送到sometext调用的文章。

我能做那样的事吗?如何通过URL传递参数????我怎样才能获得它的价值?

此致

1 个答案:

答案 0 :(得分:4)

您应该使用标准的Joomla方式来检索GET / POST请求。这个链接应该让你开始: http://docs.joomla.org/Retrieving_data_from_GET_and_POST_requests

$address = JRequest::getVar('address');

编辑 - 刚看到您的其他评论。要在文章中使用PHP,请尝试使用Sourcerer:http://extensions.joomla.org/extensions/edition/custom-code-in-content/5051