Use of undefined constant STDIN – assumed ‘STDIN’ in C:\wamp\www\study\sayHello.php on line 5

Just define STDIN constant at top of your file,

define('STDIN',fopen("php://stdin","r"));

Leave a Comment