Echoing Input Using Methods | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Echoing Input Using Methods

How do I take in input from the console echo it onto the screen by using at least three methods?

17th Feb 2019, 1:17 AM
Tracy Lester
1 Answer
0
First create in HTML <input type="text" name="something" > Then using php, <?php $val = $_POST['something']; echo "The typed value is ".$val; ?>
8th Jun 2019, 8:57 AM
Charles Nduka
Charles Nduka - avatar