Jump to content

if statements OOP


onthespot

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.