Hi all I have a page with a nav bar on top with several options like Home, Forms, etc. When any of these nav options are clicked you get redirected to another php page.
Problem:
user clicks on a form notification from the Home (home.php) page, it should redirect them to the correct landing page in this case forms.php and open up the form that they selected. I assume I need to pass the formID somehow so I can open it up in the correct form, but how do I do that?
<ul class="mainNav">
<li class="nav-one"><a href="">Home</a></li>
<li class="nav-two"><a href="forms.php">Forms</a></li>
<li class="nav-three"><a href="dash.php">Dashboard </a></li>
</ul>