$s = file_get_contents('my_file.txt'); # correctDo NOT use readfile()
$s = readfile('my_file.txt'); # WRONGreadfile() will pass the file thru to the browser and put the number of byte info your string. There is probably a place for this function but I bet its used wrong more often than not.