File "textarea_THDC.php"
Full path: E:/sites/Single15/tinmung2007/webroot/THDC-Hai- Ngoai/textarea_THDC.php
File size: 569 B
MIME-type:
Charset: utf-8
<html>
<head></head>
<title>THDC_textarea</title>
<body>
<form name="frmLogin" action="b.php" method="post">
<label>User Name: </label>
<input type="text" name="txtUserName"/><br/>
<label>Password: </label>
<input type="password" name="txtPassword" /><br/>
<input type="submit" value="Log in"/><br/>
</form>
<?php
$username = $_POST['txtUserName'];
$password = $_POST['txtPassword'];
echo "<p>UserName : ".$username."</p>";
echo "<p>Password : ".$password."</p>";
?>
</body>
</html>