Hi,
I've password protected TWO pages on my site, and want to do the following:
On the login page, once the user has entered the password, I want two links to show up that now link to the pages. I only really need tyo know how to display the links withing the <? ?> tags
<?php
session_start();
if(isset($_POST['password'])) {
if ($_POST['password'] == "password") {
$_SESSION['password'] = 1;
echo "Login Successful!" ;
// THIS IS WHERE I WANT THE TWO LINKS TO GO //
exit;
}
}
?>