Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #107.71K
~10K People Reached
Favorite Forums
Favorite Tags
php x 1

1 Posted Topic

Member Avatar for danielbala

this is my html code <html> <head> <h1 align=center>LOGIN PAGE</h1> </head> <body align=center> <div align=center> <form method="post" action="welcome.php" > <label>USERNAME</label> <input type="text" value=""></input> <br><br> <label>PASSWORD</label> <input type="password" value=""></input><br><br> <input type="submit" value="submit"></input><br><br> </form> </div> </body> </html> and this is my php code <html> <body> WELCOME <?php $a = $_POST['name']; echo var_dump($a); …

Member Avatar for 3.15127E+11
0
10K

The End.