is the any error in this code if i am using php3
the first page:
<?
Session_start();
$myid = "aayatoos";
Session_register("myid");
?>
<a href = t2.php>aayatoos</a>
t2 page
<?php
session_start();
echo $ myid;
?>
and if the seesion variable only used in php 4 is there any replacement of using session to pass variable value to next page and without using the sumbit type