I'm trying to code a small project and I'm pretty noob at php. I've coded the following with the help of google but it doesn't seem to work?
<?php
$file1 = "1.txt";
$openfile1 = fopen($file1, 'r');
$data1 = fread($openfile1, 150);
fclose($openfile1);
echo $data1;
?>
<br>
<?php
$file2 =...