i have page1.php. it protected with session (user name & password)
after one user can access to this page there is link to page2.php:
<a href="page2.php>page2</a>
in page2.php i read the session that created with page1.php then if it valid it show page2.php
the problem is how do i pass session from page1 to page2?
when i click on this link page2.php cann't showes because there isn't session.
(so i don't want pass session between 2 pages by url string that itisn't safe)
Thanks