Created
October 7, 2016 15:42
-
-
Save sangpt/6866f3b27fbb4c0b17ae0057ac29f1f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
table { | |
border-collapse: collapse; | |
} | |
table td { | |
color: blue; | |
} | |
</style> | |
</head> | |
<body> | |
<?php | |
$s = "<font color='red'><h1>PHIẾU ĐĂNG KÍ HỌC MÔN TIN HỌC</h1></font>"; | |
$s .= "<table border=1>" | |
. "<tr><td>Họ Tên</td><td><input type='text' value=''></td><td>Điện Thoại</td><td><input type='text' value=''></td>" | |
. "<tr><td>Ngày Sinh</td><td><input type='text' value=''></td><td>Nơi Sinh</td><td><input type='text' value=''></td></tr>" | |
. "<tr><td>Môn Học</td><td>" | |
. "<select><option>Tin Học Căn Bản</option><option>Word</option><option>Exel</option><option>Access</option><option>PowerPoint</option><option>Thiết Kế Web</option></select>" | |
. "</td><td>Ca Học</td><td>" | |
. "<select><option>7h00 -> 11h00</option><option>7h30 -> 17h00</option><option> 11h00 -> 13h00</option><option>13h00 | |
-> 17h00</option></select>" | |
. "</td></tr></table>"; | |
echo $s; | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment