Please send questions to st10@humboldt.edu .

<html>

<!-- this is adapted from the PHP Manual -->

<head>
    <title> type_play.php </title>
</head>

<body>
    <h1>
    <?php
         $aBool = TRUE;
         $aString = "foo";
         $anotherString = 'foo';

         $anInt = 13;
         $aFloat = 3.14159;

         print "\$aBool's type: " . gettype($aBool) . "<br>\n";
         print "\$aString's type: " . gettype($aString) . "<br>\n";;
         print "\$anInt's type: " . gettype($anInt) . "<br>\n";;
         print "\$aFloat's type: " . gettype($aFloat) . "<br>\n";;
    ?>
    </h1>
</body>

</html>