我的index.php文件我已經somethingk,如:與PHP的問題導致圖像
<?php
session_start();
$_SESSION[some_value] = 1;
?>
<img src="image.php" alt="some image"/>
<?php
$_SESSION[some_value] = 0;
?>
我image.php文件我有看起來像(基本代碼):
<?php
session_start();
header("Content-Type: image/png");
$im = @imagecreate(400, 20)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 255, 255, 255);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,"session value is : {$_SESSION[some_value]}", $text_color);
imagepng($im);
imagedestroy($im);
?>
現在,當我加載我的index.php頁面在瀏覽器中的圖像中的值是session value is : 0
,如何使它顯示1,然後在index.php
代碼將其設置爲0(將image.php
代碼添加到設置值爲0是不是我要找的)