renaming for the sake of having better naming

This commit is contained in:
Dan Buch
2011-01-02 23:17:16 -05:00
parent 00969ebd03
commit 43765f44ce
139 changed files with 5 additions and 5 deletions

9
web/html/io.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
$stdin = fopen('php://stdin', 'r');
$mystring = fgets($stdin);
print "\$mystring=$mystring";
?>