hii...
ah ah session don't work with me i don't know why
i am make all the sttings
Code:
session.save_handler = files
session.auto_start = 1
session.use_cookies = 1
and all the another settings and this the code for the page i am make test in it
session.php
Code:
<?
session_start();
session_register("zx");
session_register("co");
$zx=10;
$co++;
echo "welcome";
echo "<br>";
echo "you visit this page=".$co ;
echo "<br>";
print $zx;
echo '<a href=" php2.php ">second page</a>';
?>
Code:
<?
session_start();
echo $PHPSESSID ."<br>";
echo "<br>";
echo $zx;
?>
plz any one can help[/php]