0
What's different between "name" and "type"? There are equal?
1 Answer
+ 2
Hi Rihter,
Is not equls, the diference is:
1- Type define Type Of the input on the forms and and help an forms mobile.
2- Name is like a reference to input type, example:
To get form input Information in php you can use reference Of the input.
<input type="text" name="name" placelhoder="Insert Name""/>
php
<?php $a = _POST["name"]; ?>
it help you?