hi,
i am new to php but old in progamming. i was unable to use seesion variable . i try to display the session variable but it is not displaying any thing in the broswer. Even it is not displaying any variable. Neither it is giving any error
here is the code i am using
<?php
session_start();
print($counter);
$counter++;
session_register("counter");
echo($counter);
?>