how would i do this with a url? anyone?
i want to have a url and make the person logout, would i use session_destroy() somehow?
try some of this
$_SESSION = array();
or if you are just trying to unset some special login variable
unset($_SESSION['var']);
this kinda covers it all:
session_start(); $_SESSION = array(); session_destroy(); Header("Location: ./");