|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-05 01:31 UTC] sniper@php.net
[2001-06-05 03:43 UTC] mike_comp at hotmail dot com
[2001-06-14 22:05 UTC] sniper@php.net
[2001-06-14 22:20 UTC] mike_comp at hotmail dot com
[2001-06-19 08:17 UTC] sniper@php.net
[2001-06-19 23:24 UTC] mike_comp at hotmail dot com
[2001-06-21 14:14 UTC] sniper@php.net
[2001-06-22 14:59 UTC] mike_comp at hotmail dot com
[2001-06-23 18:38 UTC] sniper@php.net
[2001-06-25 19:20 UTC] mike_comp at hotmail dot com
[2001-06-26 07:15 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 06:00:01 2025 UTC |
This happens a lot with me. I make a script which has no errors but then the php dll crashes. I'm not using exotic modules or anything. just simple code. Last time I just kept deleting lines and moving the code around until it worked but now my logout script stopped working after i added more code to it. a user would request login.html?mode=logout then login script inlcudes a global file which has a logout() function that is called. function log_utils($action){ elseif($action == logout){ setcookie ("pword", "", time()-3600, "/", "", 0); setcookie ("hash", "", time()-3600, "/", "", 0); return 1; } if ($mode=="logout"){ log_utils(logout); ... Thanks.