Search This Blog

Tuesday, 20 January 2015

Open file in PHP.

<?php


$myFile = "testFile.txt";


fopen($myFile, 'r') or die("can't open file");


?>

No comments:

Post a Comment