Session and headers - for experts -
Hello everybody,
I have a problem which is getting me crazy.
I have an application in which I serve files to users with these 3 rows using headers:
header('Content-Type: application/save');
header('Content-Disposition: attachment; filename=$flName');
readfile($file);
In this way everything is fine bot with NS and IE.
The problem comes with the sessions.
As I need to use sessions, my script starts with
session_start();
Well, in this way It only works with NS and not anymore with IE.
Did anybody of you ever have such a problem?
Ideas?
Many thanks in advance.
Alessandro