I'm trying to print a list of values that I've stored in a session-variable array, and all I'm getting is that 'Headers already sent...' error. On the error page I can see the array working, but obviously it won't proceed from there. The line the error mentions is this:
$uploadedfiles = print_r($_SESSION['uploadedfiles']);
The array is declared and values are added to it with this:
array_push($_SESSION['uploadedfiles'], $file_name);
Any thoughts?
Thanks kindly.