When I open the following page in Internet Explorer 8, right click then go to Properties, information such as Type, Size, Modified and Created displays as expected.
- Code: Select all
<?php
echo "here";
?>
But when I open the following page instead, most of the page properties show "Not Available" instead.
- Code: Select all
<?php
session_start();
echo "here";
?>
I am sure it is something to do with the header... Could anyone tell me how to use session_start() and still get the relevent page properties?
Regards,
Charlie.

