Is it possible to do download a string variable in my code as a file with cakephp ?
For example:
$myString = "value1;value2;value3
1;2;3";
I want to download the string $myString as a csv file without saving it on my server. I just want the user to be able to download the string as a file.
If you have regular php solutions, It can do the job but I prefer to use CakePHP.
Thanks for your help,
Antoine