我正在创建一个包含会话的脚本,但服务器不记得这些设置。 它使用的是变量id,这可能是问题,但我该如何解决这个问题?
以下是代码:
网址示例:http://domain.eu/isloggedin.php?code= {0}< - Windows应用程序将填写此内容。
登录:
<?php
ini_set("display_errors", 1);
error_reporting(E_ALL);
session_start();
$code = $_GET['code'];
$lstring = $code . "-CONFIG";
$_SESSION[$lstring] = "True";
?>
GET:
<?php
ini_set("display_errors", 1);
error_reporting(E_ALL);
session_start();
$code = $_GET['code'];
$lstring = $code . "-CONFIG";
if (isset($_SESSION[$lstring])){
echo "True";
}
我做错了什么?
此致
丹尼尔