Xampp PHP oturumu ile ilgili sorun

0 Cevap php

File_1.php içeriyorsa, basit bulunuyor At

<?php

  session_start(); 

  $_SESSION["test_message"] = "Hello, world";

  header("Location: http://localhost/file_2.php");
?>

ve file_2.php içeriyor

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>
<body>

<?php

  if (!(isset($_SESSION["test_message"])))
    echo "Test message is not set";
  else
    echo $_SESSION["test_message"];

var_dump($_SESSION);

  session_destroy();
?>

</body>
</html>

sonuç Test message is not set ve bir var_dump ($ _SESSION) döner null - locally, with Xampp. Ben ödenmiş için barındırılan bir web sitesine bu aynı dosya upload Ancak, çalışır ve ben görmek

Hello, world
array
  'test_message' => string 'Hello, world' (length=12)

Ben Xampp altında PHPInfo baktığımızda gösterir Session Support enabled. Ben yanlış ne yapıyorum?

0 Cevap