<?php
//Retrieve form data.
//GET - user submitted data using AJAX
//POST - in case user does not support javascript, we'll use POST instead
$name = ($_GET['name']) ? $_GET['name'] : $_POST['name'];
$email = ($_GET['email']) ?$_GET['email'] : $_POST['email'];
$comment = ($_GET['comment']) ?$_GET['comment'] : $_POST['comment'];
//flag to indicate which method it uses. If POST set it to 1
if ($_POST) $post=1;
//Simple server side validation for POST data, of course, you should validate the email
if (!$name) $errors[count($errors)] = 'Please enter your name.';
if (!$email) $errors[count($errors)] = 'Please enter your email.';
if (!$comment) $errors[count($errors)] = 'Please enter your message.';
//if the errors array is empty, send the mail
if (!$errors) {
//recipient - replace your email here
$to = 'samson3d@gmail.com';
//sender - from the form
$from = $name . ' <' . $email . '>';
//subject and the html message
$subject = 'Message from ' . $name;
$message = 'Name: ' . $name . '<br/><br/>
Email: ' . $email . '<br/><br/>
Message: ' . nl2br($comment) . '<br/>';
//send the mail
$result = sendmail($to, $subject, $message, $from);
//if POST was used, display the message straight away
if ($_POST) {
if ($result) echo 'Thank you! We have received your message.';
else echo 'Sorry, unexpected error. Please try again later';
//else if GET was used, return the boolean value so that
//ajax script can react accordingly
//1 means success, 0 means failed
} else {
echo $result;
}
//if the errors array has values
} else {
//display the errors message
for ($i=0; $i<count($errors); $i++) echo $errors[$i] . '<br/>';
echo '<a href="index.html">Back</a>';
exit;
}
//Simple mail function with HTML header
function sendmail($to, $subject, $message, $from) {
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= 'From: ' . $from . "\r\n";
$result = mail($to,$subject,$message,$headers);
if ($result) return 1;
else return 0;
}
?>
没有合适的资源?快使用搜索试试~ 我知道了~
HTML+CSS+JS+JQ+Bootstrap的APP云服务响应式网页模板.7z
共76个文件
jpg:18个
js:17个
png:15个
需积分: 5 0 下载量 164 浏览量
2024-07-10
14:32:55
上传
评论
收藏 2.75MB 7Z 举报
温馨提示
探索网页设计的无限可能,从零构建专业级网站不再是梦想。这份精选资源包,囊括HTML、CSS、JavaScript、jQuery及Bootstrap框架的完美结合,为您的创意插上飞翔的翅膀。HTML奠定坚实基础,CSS赋予页面绚丽风格,JavaScript与jQuery注入交互灵魂,而Bootstrap则确保响应式设计的无缝体验,适配各种屏幕尺寸。无需从头摸索,这份源码集锦覆盖多种场景,从个人博客到企业官网,从在线商店到论坛社区,应有尽有。每行代码都经过精心打磨,注释详尽,易于理解和修改,让您迅速上手,定制专属网页。拥抱这份资源,开启网页开发的新篇章,让您的想法变为现实,吸引每一位访客的目光。
资源推荐
资源详情
资源评论
收起资源包目录
HTML+CSS+JS+JQ+Bootstrap的APP云服务响应式网页模板.7z (76个子文件)
[web前端]&[课程设计]&[网站源码]-APP云服务响应式网页模板
html
contact.php 2KB
js
animate.js 10KB
bootstrap.min.js 28KB
quicksand
setting.js 919B
jquery.quicksand.js 14KB
portfolio
setting.js 1KB
jquery.quicksand.js 14KB
jquery.fancybox-media.js 5KB
jquery.flexslider.js 40KB
jquery.fancybox.pack.js 22KB
google-code-prettify
prettify.css 817B
prettify.js 13KB
validate.js 3KB
flexslider
jquery.flexslider.js 26KB
setting.js 71B
custom.js 9KB
jquery.easing.1.3.js 8KB
jquery.js 91KB
contact.js 2KB
courses.html 11KB
pricing.html 9KB
img
bg_direction_nav.png 657B
service3.jpg 92KB
e3.png 148KB
works
2.jpg 154KB
6.jpg 81KB
1.jpg 67KB
5.jpg 65KB
8.jpg 126KB
3.jpg 71KB
7.jpg 48KB
4.jpg 78KB
client1.png 20KB
glyphicons-halflings-white.png 9KB
team4.jpg 33KB
logo.png 20KB
team3.jpg 45KB
slides
2.jpg 95KB
1.jpg 119KB
service2.jpg 61KB
team2.jpg 46KB
service1.jpg 85KB
e2.png 169KB
avatar.png 1KB
border-bg.jpg 11KB
img1.png 631KB
e1.png 182KB
client3.png 20KB
client2.png 19KB
glyphicons-halflings.png 12KB
team1.jpg 33KB
nivo-bullets.png 1KB
css
style.css 31KB
bootstrap.min.css 99KB
flexslider.css 4KB
font-awesome.css 21KB
fancybox
blank.gif 43B
fancybox_loading.gif 4KB
fancybox_overlay.png 1003B
fancybox_sprite.png 1KB
jquery.fancybox.css 6KB
animate.css 60KB
custom-fonts.css 19KB
services.html 10KB
index.html 17KB
contact.html 8KB
about.html 14KB
fonts
FontAwesome.otf 61KB
fontawesome-webfont.eot 37KB
customicon
Icons.svg 159KB
Icons.woff 50KB
Icons.ttf 32KB
Icons.eot 32KB
fontawesome-webfont.woff 43KB
fontawesome-webfont.svg 197KB
fontawesome-webfont.ttf 79KB
共 76 条
- 1
资源评论
master_chenchengg
- 粉丝: 1w+
- 资源: 2177
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功