Hi,
My problem is that I'm recovering data (which depend on what the user selected on a first page) from a SQL database for several language checked (also on that 1st page).
I would like to create files for each one of the language selected.
For now, I tried to use a while with a variable initialized at 0 and to launch the creation of the file before incrementing that variable.
$d=0;
while ($d<sizeof($id_langue))
{
RECOVERING OF DATA
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.ucfirst($id_lange[$d]).'.text";');
$output_text .= $data[$element];
}
$d++;
However, my files is incremented with every data.
I tried to refresh my page after the $d++; but the URL is depending what the user selected...
And just a header('Refresh: 5'); doesn't word.
I'm sorry if I made any language mistakes.
Regards.