3

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

BAD_SEED
  • 4,840
  • 11
  • 53
  • 110
  • Are you trying to pass parameters to a module or a Joomla article? Those are two very different goals with different methods to achieve each. – Brent Friar May 10 '11 at 03:33

1 Answers1

5

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

lee
  • 1,036
  • 2
  • 14
  • 24