Question
Struggling to "browse" through the website using Dreamweaver because of Session Variables
Hey there,
So I have previously created a website using a different text editor, giving Dreamweaver a try for more options/ease of use.
All of the webpages contain a piece of script that'll redirect you if you haven't set your username via the login page:
if (isset($_SESSION['userName'])) {
;
}
else {
header("Location: ../index.php?error=notloggedin");
exit();
};
How would I be able to edit and view the page in design/live by setting the username variable in DW?
Thanks
