hello,
why the F..... is session_unregister not working i have php 4.0.6.
this is the script i am using, now it prints out tree time $test even the
unset is not working anymore, but when i take the session_unregister
out of the script it prints 2 $test lines WHAT THE F... is going on here
if somebody hase the answer PLEAAASSSEEEEE let me know
now iám going to drink a 1000 beers because it's weekend
greatings and thanks in advance
gijs epping
<?
session_start();
session_register("test");
$test="he daar is t weer";
print("$test<br>");
session_unregister(test);
print("$test<br>");
session_unset();
session_destroy();
print("$test<br>");
?>