im using this code:
setcookie ($Var, $Info, time()(786400), "/");
it should set the cookie to expire after one week but the cookie is still a per-session cookie... how do i make them last as long as they should.
pull the extra parenthesis and use quotes where you can:
SetCookie ("links_target", "$links_target",".time()+365243600.","/");
good luck 🙂