<html><head><title>Rhyming Dictionary</title></head><body>
<?php
include("findRhymes.php");
include("dbConnect.php");
$phon = @$_GET['phonetics'];
$num = @$_GET['num'];

echo("Full results for \"$phon\":<br>");

if($phon != NULL && $num != NULL)
{
   findRhymes(preg_split("/-/",$phon), $num);
}

?>
</body></html>