BAD_SEED
BAD_SEED

Reputation: 5056

How to pass URL parameters to a joomla module

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

Upvotes: 3

Views: 11279

Answers (1)

lee
lee

Reputation: 1046

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

Upvotes: 5

Related Questions