What? | Recent Posts | Render HTML | UnRender HTML


<?php

echo "Hello !!n";

while($Line = trim(fgets(STDIN)))
{
if(in_array($Line, array('end', 'die', 'quit', 'stop', 'kill', 'sigkill')))
break;

echo "You said: $Linen";
}

echo "Bye !!";

?>