in public_html, i create independent file myfile.php for do something.
in this file, i want to get session which users have logged.
i'm try to start session:
<?php
session_start();
if($_SESSION["login"]):
//do something
else:
//do another
endif;
?>
i get a error
<?php
Warning: Class __PHP_Incomplete_Class has no unserializer in
?>
What's a solution for me ? Thank all so much.