PHP Classes

File: game/truthdare/views/onforce1.php

Recommend this page to a friend!
  Classes of Dave Smith   The Gameboard   game/truthdare/views/onforce1.php   Download  
File: game/truthdare/views/onforce1.php
Role: Application script
Content type: text/plain
Description: Game View
Class: The Gameboard
Implement a board game using the takeover strategy
Author: By
Last change:
Date: 6 years ago
Size: 1,069 bytes
 

Contents

Class file image Download
<?php
$game
->message = '';
?>
<div id="player-onforce1">
    <div><?php echo $game->deck1Card['title'];?></div>
    <div><?php echo $game->deck1Card['text'];?></div>
<?php
if( empty($game->deck1Card['action']) ){
?>
<form method="post">
        <div class="form-submit">
            <input type="hidden" name="a" value="nextplayer">
            <input type="submit" name="submit" value="Okay">
        </div>
    </form>
<?php
}else{
?>
<form method="post">
        <div class="form-submit">
            <input type="hidden" name="a" value="<?php echo $game->deck1Card['action'];?>">
            <input type="hidden" name="v" value="<?php echo $game->deck1Card['value'];?>">
            <input type="submit" name="submit" value="Okay">
        </div>
    </form>
<?php
}
?>
<div>or choose to quit now</div>
    <form method="post">
        <div class="form-submit">
            <input type="hidden" name="a" value="playerquit">
            <input type="submit" name="submit" value="Quit">
        </div>
    </form>
</div>