How to pass URL parameters to a joomla module

BAD_SEED picture BAD_SEED · May 9, 2011 · Viewed 10.8k times · Source

I have my own nice link http://www.link.com/sometext, now I would "enhance" this having the opportunity to write something like http://www.link.com/sometext?parameters=myParam cause I need to send a parameters to the article called by sometext.

Can I do something like that??? How can I pass parameters through the URL???? How can i get it's value?

Regards

Answer

lee picture lee · May 19, 2011

You should use the standard Joomla way to retrieve GET/POST requests. This link should get you started: http://docs.joomla.org/Retrieving_data_from_GET_and_POST_requests

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

EDIT - just saw your other comment. To use PHP inside article, try something like Sourcerer: http://extensions.joomla.org/extensions/edition/custom-code-in-content/5051