client can't under stand a session started. so i cant user a session var in other pages. session put a file (with name of session id) on server. how can use session vars when this file on server? i think i don't know something about sessions...
codes:
in the x.php
session_start();
$ses_id=session_id();
$ses_user=$log_name;
session_register("ses_id");
session_register("ses_user");
in y.php
session_start();
echo $ses_id;
echo $ses_user;
in y. php there is nothing printed on page...