Hello Reader's if have a html form with the variable of same name then you can get them indevisaly by POST
Change the names of your inputs:
<input name="name[]" value="Address" />
<input name="name[]" value="Number" />
<input name="name[]" value="Age" />
<input name="name[]" value="College" />
Then you have to get these variable as below:-
$_POST['name'][0] == 'Address'
$_POST['name'][2] == 'Age'
0 Comment(s)