On Sat, 18 May 2002, Rafael Perazzo wrote: > Is there any way to ask the user to type the value of > a variable from stdin ? (like read in Pascal, or scanf > in C). I'm using PHP from command line.
<?
$f = fopen('php://stdin', 'r'); // this line answers your question
while ($l = fgets($f, 100)) print strtoupper($l);
fclose($f);
?>
miguel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

