Hello everone,
I have a webpage that have a form in iframe now the form submit in iframe and check from database and if found the username and password it start session and when i go to another page the session is lost, now how i can maintain session in iframe and parent widnow the session is start in child window means(iframe) and want to save in parent window to access other pages of website.
<html>
<head>
<title>parent window</title>
</head>
<body>
<a href'home.php'>Home</a>
<a href'home1.php'>Home1</a>
<a href'home2.php'>Home2</a>
<a href'home3.php'>Home3</a>
<iframe src='login.php'>(after login session starts in this iframe)</iframe>
</body>
</html
After session start when i click on home1 or any other link the session lost
How i can prevent this
Regards