+ 1
How to get input from the user in php
6 Answers
+ 29
Use http GET and POST parameters.
+ 30
Here's an example.
https://www.sololearn.com/learn/PHP/1841/
+ 4
by using POST and GET
+ 4
sorry for asking a question here
its irreverent but
how can we select an element in php ..
like in js we can select an element by
document.getElementById();
how can we do that in php..
+ 3
using GET:-
<?php echo $_GET['subject']; ?>
using post:-
<?php echo $_POST['subject']; ?>
0
can anyone give me any example plz?