PHP Classes

File: getFileContents.php

Recommend this page to a friend!
  Classes of Cinu Chacko   Class Grep Search   getFileContents.php   Download  
File: getFileContents.php
Role: Auxiliary script
Content type: text/plain
Description: Display file contents.
Class: Class Grep Search
Search files in directories like grep
Author: By
Last change:
Date: 15 years ago
Size: 184 bytes
 

Contents

Class file image Download
<?php
$file_path
=$_GET['file_path'];
$fileContents=file_get_contents($file_path);
$txt=htmlentities($fileContents);
$txt = ereg_replace( "\n", '<br />', $txt );
echo
$txt;

?>