セッションを正常に作成し、すべてのページで機能しますが、次のページを実行すると、セッション変数が表示されず、再度ログインを要求されます。
コードは次のとおりです。
if(!session_id())
session_start();
$con = mysql_connect("0.0.0.0 ","db_name","pwd");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("db_name", $con);
if($_GET['rating']=='like')
{
$rcount = $_GET['rcount'] + 1;
$id= $_GET['id'];
mysql_query("UPDATE networx_notes SET up='$rcount' WHERE id='$id' ");
header( 'Location: http://adrress.com/somewhere.php' ) ;
}