readline Function |
The readline function returns a line read from the console as a string. The line is terminated by a CRLF.
Execution of the Alchemy script is halted while the readline function is waiting for input.
readline();
The following example echoes a line read from the console:
$line = readline(); PRINT $line;