1
In order to manipulate html tags in php I need to define a name for them, while javascript uses id, but I may have some kind of future problem if I use the same name I set for name in ids?
Ex..<input type="text" id="user" name="user">
if not, is this practice recommended or used? , or by convention usually different names are assigned?
No problem. But remember that the
id
can only be used once, cannot use the same value again, while thename
can be used several times.– Inkeliz