Hey everyone! i am working on a website, i am having a problem in it. I am saving pin of the user in session and i am calling that pin in the main page, when i called it it gets an error of
Notice: Undefined index: PIN in D:\wamp\www\mano\membersweb.php on line 81
Call Stack #timememoryfunctionlocation 10.0007383464 {main}()
here i am putting the pin in session
[php]
[/php]
and here i am calling it
<div id="topnav">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li>
</li>
<li ><a href="services.html">Services</a></li>
<li ><a href="membersweb.php?pin=<?php session_start(); $pin = $_SESSION['pin']; echo $pin; ?> ">Profile</a></li>
</ul>
</div>