griiettner
8/13/2013 - 1:17 PM

How to get all parameter from URL in joomla

<?php
//Example : http://localhost/index.php?option=com_hello&view=item&task=add_tag&tags=1400,1783,1770,9
$data =JRequest::get( 'request' );
print_r($data);
?>

//Output :
//Array ( [option] => com_hello [view] => item [task] => add_tags [tags] => 1400,1783,1770,9)