$file_loc="$sorc"; # path to the file $whattoread = fopen($file_loc, "r"); # opens the file for reading $file_contents=fread($whattoread, filesize($file_loc)); # puts contents of whole file in to varaible fclose($whattoread); # closes file print "$file_contents"; }}