include_once 'models/Dealer.php'; include_once 'models/Deck.php'; include_once 'models/Hand.php'; include_once 'models/Player.php'; //get the player names from the form $player_names = $_POST['players']; //Create a new Dealer $dealer = new Dealer(); //iterate through the player names foreach ($player_names as $num => $player_name) { $dealer->registerPlayer(new Player($player_name)); } //tell the dealer to deal the cards to the players $dealer->dealCards(); //ask the dealer the rankings of the players $player_ranking = $dealer->determineWinnerRanking(); //variable for getting remaining cards $cardcount = 52; ?> <!DOCTYPE html> <html> <head> <title>Poker Demo</title> <link rel="stylesheet" href="css/reset.css" type="text/css" /> <link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" /> <script src="js/jquery.min.js"></script> <style> body { padding-top: 40px; background-color: #EEEEEE;