admin 发表于 2019-9-25 13:28:40

第20课:我的第一个PHP留言板页面

主讲老师:郭盛华

学会了PHP语言,就要多做一些作品,不断得去练习练习:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>我的PHP留言板 - 东方联盟</title>
<style type="text/css">
body p {
      color: #FFF;
}
body {
      background-color: #333;
}
body,td,th {
      color: #FFF;
}
</style>
</head>

<body>
<form id="form1" name="form1" method="post" action="mycc.php">
<p>昵称:
    <label for="name"></label>
<input name="name" type="text" id="name" maxlength="16" />
</p>
<p>邮件:
    <label for="email"></label>
    <input name="email" type="text" id="email" maxlength="30" />
</p>
<p>联系QQ:
    <input name="QQ" type="text" id="QQ" maxlength="15" />
</p>
<p>留言内容:
    <textarea name="txt" rows="10" id="txt"></textarea>
</p>
<p>
    <input type="submit" name="button" id="button" value="提交" />
</p>
</form>
</body>
</html>PHP代码页面请看视频教程!


页: [1]
查看完整版本: 第20课:我的第一个PHP留言板页面