<?php

function print_get_info()
{
    echo "<h2>GET info</h2>";
    echo "<pre>";
    print_r($_GET);
    echo "</pre>";
}

function print_post_info()
{
    echo "<h2>POST info</h2>";
    echo "<pre>";
    print_r($_POST);
    echo "</pre>";
}

?>
