so I usually don't have any problems with this type of thing since I usually tend NOT to have any redirection issues since most of the work I do is only in one language, but this is driving me INSANE, so I was hoping maybe someone could help me out here
JavaScript:
Code:
function english()
{
setCookie("clang","E",360);
window.location="en/home.html";
}
function francais()
{
setCookie("clang","F",360);
window.location="fr/home.html";
}
When the user clicks on the first link to visit the website in English, it should create the cookie [the getCookie and setCookie functions ARE created...] so that on the next visit, the user is automatically redirected to the English home page.
Before this page loads, you will need to check if a cookie exists, then redirect depending on the language the cookie says, redirect using an if else statement.
Bookmarks