how to take input in php

30

how to take input in php -

<?php
 
// For input
// Hello World
$a = readline('Enter a string: ');
 
// For output
echo $a;   
?>

Comments

Submit
0 Comments