0
In <input> name attribute not show in codding output...
What can I do?
9 odpowiedzi
+ 3
name attribute is for the label tag to place a label for that input tag, also that name attribute is send to the server when you submit form, so don't get why you expect to see it in output.
0
rather use the 'value' attribute to set textual content of your input ;)
0
Hey stop that Nicholas!
Aman Anos, show your attempt please... and specify it more
0
Ok Dino Bro
0
<!DOCTYPE html>
<html>
<head>
<title>Dear Anos</title>
</head>
<body>
<form action="http://www.sololearn.vom" method="GET">
<input type="text" name="Username"/><br />
<input type="Password" name="Password" /><br />
<h4>Login With Email id</h4>
</form action="http://www.sololearn.com" method="POST">
<input type="text" name="email id"/><br />
<input type="Password" name="Password" />
</form>
</body>
</html>
0
I got my mistake... Where I done.
Thank you to all...