+ 1
How to get a php file data to a HTML form
get name from php
4 Answers
+ 1
I know this method are use
but this method are used to send the data
HTML form to php
but I can process the request and send response to HTML form text box
plz give me Example
0
$_POST
0
extract($_POST); this will extract all the html input data in php which can be used anywhere using html id or name fiwld
0
There are 3 global associative arrays in PHP to do that. $_GET, $_POST,and $_REQUEST.