Joomla Request Variable
In PHP, you have $_GET and $_POST. In Joomla 1.5 framework, that is easy and quite similar with ASP.Net.
Code
$Itemid = JRequest::getVar('Itemid'); |
JRequest, then you can access GET and POST.
More information, http://docs.joomla.org/Retrieving_data_from_GET_and_POST_requests
Trackback address for this post
Trackback URL (right click and copy shortcut/link location)
2 comments
This post has 27 feedbacks awaiting moderation...
Form is loading...
Comment from: Hemanathagiribabu [Visitor]
Thanks for this post.