I'm using the Safari browser, and I'm programming in PHP 5.5. inexplicably the safari does not secure session ... in fact neither creates!
In other browsers my system works correctly, only in Safari has this problem ... I would like to know if it is any configuration in my browser, or if it is something I have to configure in PHP 5.5 or if it is something else which is going unnoticed to me
Basically the only thing I use is:
session_start();
At the beginning of each file that uses the PHP session
In the body of the page index.html I use frames to mount my page, something like:
<frameset>
<frame src="topo.html"/>
<frameset id="fraCorpo" ">
<frame src="menu.html" />
<frame src="corpo.html" />
</frameset>
</frameset>