initial commit

This commit is contained in:
2016-10-23 20:05:05 +02:00
commit 2b6108425b
56 changed files with 9071 additions and 0 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
<?php
$line1 = file_get_contents( "/tmp/radiod/line1.txt" );
$line2 = file_get_contents( "/tmp/radiod/line2.txt" );
$line3 = file_get_contents( "/tmp/radiod/line3.txt" );
$line4 = file_get_contents( "/tmp/radiod/line4.txt" );
$line1 = str_replace(" ","&nbsp;",$line1);
$line2 = str_replace(" ","&nbsp;",$line2);
$line3 = str_replace(" ","&nbsp;",$line3);
$line4 = str_replace(" ","&nbsp;",$line4);
echo $line1;
echo "</br>";
echo $line2;
echo "</br>";
echo $line3;
echo "</br>";
echo $line4;
echo "</br>";
?>