⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 email-no.php

📁 用PHP/MySQL/Apache实现的简单用户注册/登录系统。
💻 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" xml:lang="en" lang="en">
<html>
<head>
	<meta http-equiv="content-type" content="text/html;charset=iso-8859-1"/>
	<title>Contact Me</title>
</head>
<body>
	<h1>Contact Me</h1>
	<?php
		if(isset($_POST['submitted'])){
			if(!empty($_POST['name'])&&!empty($_POST['email'])&&!empty($_POST['comments'])){
				$body="Name: {$_POST['name']}\n\nComments: {$_POST['comments']}";
				$body=wordwrap($body,70);
				mail('chrisun157@gmail.com','contact Form Submission',$body,"From: {$_POST['email']}");
				echo '<p><em>Thank you for contacting me. I will reply some day.</em></p>';
				$_POST=array();
			}else{
				echo '<p style="font-weight:bold;color:#C00">Please fill out the form completely.</p>';
			}
		}
	?>
	<p>Please fill out this form to contact me.</p>
	<form action="email.php" method="post">
		<p>Name: <input type="text" name="name" size="30" maxlength="60" value="<?php if(isset($_POST['name'])) echo $_POST['name'];?>"/></p>
		<p>Email Address: <input type="text" name="email" size="30" maxlength="80" value="<?php if(isset($_POST['email'])) echo $_POST['email'];?>"/></p>
		<p>Comments: <textarea name="comments" rows="5" cols="30"><?php if(isset($_POST['comments'])) echo $_POST['comments'];?></textarea></p>
		<p><input type="submit" name="submit" value="Send"/></p>
		<input type="hidden" name="submitted" value="TRUE"/>
	</form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -