leminhphuoc55
Mr & Ms Pac-Man
mình tìm được 1 ebook cực hay nhưng mới bước vào PHP & MySQL nên còn gặp nhiều lỗi quá
mình làm theo hướng dẫn tạo 1 file form.html và handle_form.php
tập dùng biến nhưng ko biết sao dùng ko được ko biết 1 trong 2 file có thiếu dòng code nào nữa ko
form.html
handle_form.php
mình dùng Xampp hoạt động những bộ web có sẵn khác vẫn ok
anh em xin chỉ giáo ^^
mình làm theo hướng dẫn tạo 1 file form.html và handle_form.php
tập dùng biến nhưng ko biết sao dùng ko được ko biết 1 trong 2 file có thiếu dòng code nào nữa ko
form.html
Mã:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Bieu Mau HTML</title>
</head>
<body>
<form action="handle_form.php" method="post">
<fieldset>
<legend>Nhap vao thong tin cua ban:</legend>
<p><b>Ten:</b> <input type="text" name="name" size="20" maxlength="40"></p>
<p><b>Email:</b> <input type="text" name="email" size="40" maxlength="60"></p>
<p><b>Gioi tinh:</b> <input type="radio" name="gender" value="M"> Nam <input type="radio" name="gender" value="F"> Nu</p>
<p><b>Tuoi:</b>
<select name="age">
<option value="0-30">Duoi 30</option>
<option value="30-60">Giua 30 va 60</option>
<option value="60+">Tren 60</option>
</select>
</p>
<p><b>Ghi chu:</b> <textarea name="comments" rows="3" cols="50"></textarea></p>
</fieldset>
<div align="center"><input type="submit" name="submit" value="Gui thong tin"> <input type="reset" name="reset" value="Lam lai"></div>
</form>
</body>
</html>
handle_form.php
Mã:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Phan hoi</title>
</head>
<body>
<?php
echo "Cam on <b>$name</b> da dong gop y kien sau:<br><tt>$comments</tt><p>Chung toi se hoi an ban theo dia chi <i>$email</i>.</p>";
?>
</body>
</html>
mình dùng Xampp hoạt động những bộ web có sẵn khác vẫn ok
anh em xin chỉ giáo ^^