Hello,
I'm stuck with a simple thing regarding transferring data by url to an autoaction.
An example string to transfer is :
Code:
Crédit Agricole, 1re banque des particuliers... | Crédit Agricole
This is transferred to a url by something like :
Code:
?titlew=" . rawurlencode($title) . "
Then on the code autoaction I have :
Code:
$input = JFactory::getApplication()->input;
$title = $input->get('titlew' );
$title = rawurldecode($title);
echo $title;
But CB outputs is :
Code:
CrditAgricole1rebanquedesparticuliers...CrditAgricole
Can you tell me what I do wrong ?
Thanks