Definition: File_Get_Contents () works the same as file () except it returns a string instead of an array. This function retrieves data from an external file and then puts it into a string for use.
Examples:
<?php
$file = file_get_contents ('YourFile.txt');
Echo $file;
?>

