summaryrefslogtreecommitdiff
path: root/www/insertfile.php
blob: a8b000cb6d15989954364b0082c993bb22ae4d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?

$en_dic = "../blob/en_GB.dic";
$test = "../blob/test";

//if($file = file($en_dic)){
$file = file($test);
	echo "Inserted file <br>";
	echo count($file);
	echo "<br> " . $file . "<br>";

	for($i=0;$i<count($file);$i++){
		echo $file[$i];
	}

/*} else {
	echo "No file found!";
}
*/