onthespot Posted May 1, 2010 Share Posted May 1, 2010 I have the following code if($form->num_errors > 0) { return 1; //Errors with form } /* No errors, add the new account to the */ else if($database->addLeagueInformation($subname, $subplayers, $subformat, $subgame, $subseason, $subwindow, $subadmin, $subchampion, $subtype)) { return 0; //New user added succesfully } else { return 2; //Registration attempt failed } I want to add the following to it: $databases->addLeagueTable($name) Is needs to happen at the same time as the addLeagueInformation function does. Is this possible? Link to comment https://forums.phpfreaks.com/topic/200340-if-statements-oop/ Share on other sites More sharing options...
trq Posted May 1, 2010 Share Posted May 1, 2010 You do realize that 0 equals false in php? Its not usually appropriate to return false on success. Link to comment https://forums.phpfreaks.com/topic/200340-if-statements-oop/#findComment-1051367 Share on other sites More sharing options...
Ken2k7 Posted May 1, 2010 Share Posted May 1, 2010 onthespot, please note that thorpe said "it's not usually appropriate". That doesn't mean you can't, it's just not recommended. But if you are going to do that, you need to check for the value of the method and take the necessary actions. Link to comment https://forums.phpfreaks.com/topic/200340-if-statements-oop/#findComment-1051436 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.