jrws Posted August 20, 2008 Share Posted August 20, 2008 Hey again guys, got errors again: http://pastebin.com/m7f64852c Thats the code (Bit big for forum) And the errors display no matter even if there are no errors. Anybody can help Quote Link to comment https://forums.phpfreaks.com/topic/120492-errors/ Share on other sites More sharing options...
Fadion Posted August 20, 2008 Share Posted August 20, 2008 Mate, what's the error? Quote Link to comment https://forums.phpfreaks.com/topic/120492-errors/#findComment-620907 Share on other sites More sharing options...
jrws Posted August 21, 2008 Author Share Posted August 21, 2008 Alright I guess, I didn't make it clear, I will try again OK so what happens is that I have the $error array. This contains errors to display when something happens that I don't want to happen for example having a user enter blank info. The problem is these errors are now displaying even when there are no errors to display. I hope that clears it up. Quote Link to comment https://forums.phpfreaks.com/topic/120492-errors/#findComment-621786 Share on other sites More sharing options...
Fadion Posted August 21, 2008 Share Posted August 21, 2008 I can see from your code: if (!$user || !$disname || !$pass || !$passcon || !$email || !$emailcon) { so if the case is: if(0 or 1 or 1 or 1 or 0 or 1) = true 0 or 1 = 1 1 or 1 = 1 0 or 0 = 0 You want from that line to check if all the inputs are filled, so and AND logical operator is the right choice. If only one of the variables returns false, the whole expression becomes false. Modified with AND: if (!$user && !$disname && !$pass && !$passcon && !$email && !$emailcon) { For the problem you have, I can't seem to find any errors. Try to debug the code, checking if there is any misspelled variable, any misplaced if() statement (as you have many of them) and check what count($errors) give. Quote Link to comment https://forums.phpfreaks.com/topic/120492-errors/#findComment-621817 Share on other sites More sharing options...
bluejay002 Posted August 21, 2008 Share Posted August 21, 2008 In terms of program logic, GuiltyGear is right, you might want to try it. Quote Link to comment https://forums.phpfreaks.com/topic/120492-errors/#findComment-621823 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.