0
How does a php input command look
can any one please help me. Im trying to input my own data using php I don't want to use html input
2 Antworten
+ 1
example:-
-------------------------------------
<?php
$temp = fopen("php://stdin","r");
$line = fgets($temp);
echo $line;
?>
"php://stdin" uses to take user input
+ 1
input? it is a server side language! forms, urls and so on are its input