Hi,
on a function of a controller i can get correctly vars by doing:
$jinput = JFactory::getApplication()->input;
$entry_id = $jinput->get('participant_id', null);
but when i try to set a var to recover on the view.html it doesn't work,
either if i do
$jinput->set('result',$result);
as
JRequest::setVar('result',$result);
i can't recover any data in the view.html.php
I could try to use the array of redirection, but i want to pass an object.