hiii,
my html page has a slider, on top. Its in js. I use the logout link from it to logout. Now i want to reload that page after logout…Please help
.js file says [which holds the logout link] -
[code]links: [
{
href: scriptLocation+‘log-out.php’,
text: ‘Log Out’
}[/code]
log-out.php says-
[php]<?php
require_once(‘functions.php’);
logOut();
header('Location: '.$_SERVER[‘HTTP_REFERER’]);[/php]
and function.php says -
[php]function logOut()
{
setcookie(‘login’, ‘’, time()-3600);
setcookie(‘password’, ‘’, time()-3600);
}[/php]