*/ /** * Signout from standalone mode */ include_once ('config.php'); if($ldq_standalone) { include_once ('standalone/standalone.php'); if($logged_in) { session_destroy(); } header("Location: editprofile.php?loggedout=1"); exit; } ?>