How do I specify a file redirect to a file one level above the current file in PHP? Here is my schematic so far:
-landing.html
-ajax
-checkLogin.php
checklogin.phphas the following code in it:
header("location:dashboard.html");
This obviously doesn't work since landing.php is one level above. How can I select a file one directory above? I already tried ..landing.php, but seems like it will only take filenames.
../landing.html../landing.php?