Beispiel #1
0
function show_content($hand)
{
    echo '<div id="content">' . "\n";
    show_hand($hand);
    show_draw();
    echo '</div>';
}
Beispiel #2
0
function show_content($hand, $final = FALSE)
{
    echo '<div id="content">' . "\n";
    show_hand($hand);
    if ($final) {
        show_type($hand);
    } else {
        show_draw_button();
    }
    echo '</div>';
}