How to pass URL parameters to a joomla module

10,896

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

Share:
10,896
BAD_SEED
Author by

BAD_SEED

Updated on August 17, 2022

Comments

  • BAD_SEED
    BAD_SEED almost 2 years

    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