0

Pls how do u collect input from php

Php

22nd Jan 2021, 12:23 AM
Mubarak
3 Antworten
+ 4
<form name="form" action="index.php" method="post"> <input type="text" name="uniquename"> <input type="text" name="anthorname"> </form> To show the value: echo $_POST['uniquename']; echo $_POST['anthorname'];
22nd Jan 2021, 12:43 AM
Jamal Saied
Jamal Saied - avatar
+ 1
Using the variable $_post['name of the input'] the attribute name of ur input
22nd Jan 2021, 12:25 AM
Nassera
Nassera - avatar