//Begin PHP
// get contents of a file into a string
$filename = "sponsors.txt"; //filename of text file imported
$handle = fopen($filename, "r"); //Start at the beginning of the file
$contents = fread($handle, filesize($filename));
fclose($handle);
print "$contents";
?>
Site created by Vasken Hauri for Kevin Sloan Soccer Academy.