привет всем
помогите решить вопросик
http://gpswatch.simshop.biz/ когда заказываешь тут
сделал апсеил сюда(переход после заказа)
http://gpswatch.simshop.biz/upsell/index.html
тут кнопка добавить к заказу , она не активная почему то , как реализовать чтобы на почту приходило письмо миньён добавлен к заказу?
нужно делать форму sendmail.php только вот не знаю как , только начинаю учится читать код
вот какой есть send.php
<?php
if (!empty($_POST['send']) && $_POST['send'] == 'ok')
{
if (isset($_POST['phone'])) {$phone = trim(strip_tags($_POST['phone']));}
if (isset($_POST['name'])) {$name = trim(strip_tags($_POST['name']));}
$address = 'support@simshop.biz';
$mes = "Тема: Заявка с сайта gpswatch.simshop.biz! \nКак зовут клиента: $name \nТелефон: $phone";
$sub = 'Заявка с сайта gpswatch.simshop.biz!'; //сабж
$send = mail($address,$sub,$mes,"Content-type:text/plain; charset = utf-8");
if ($send) {
header("Location: upsell/index.html");
exit;
}
}
?>
index.html где не активная кнопка
<!DOCTYPE html>
<html lang="ru-RU">
<head>
<meta charset="utf-8">
<meta name="description" content="" />
<meta name="keywords" content="" />
<link rel="stylesheet" href="css/style.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="js/jquery.carouFredSel-6.0.4-packed.js" type="text/javascript"></script>
<script src="js/gallery.js" type="text/javascript"></script>
<title></title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script>
var e = ("article,aside,figcaption,figure,footer,header,hgroup,nav,section,time").split(',');
for (var i = 0; i < e.length; i++) {
document.createElement(e[i]);
}
</script>
<![endif]-->
</head>
<body>
<section class="first-section">
<div class="container">
<h1>Спасибо за ваш заказ!</h1>
<p>Наш оператор свяжется с вами в течении 30 минут!</p>
</div>
</section>
<section class="second-section">
<div class="container">
<h1><span>ПОЗДРАВЛЯЕМ!</span> ВЫ НАШ <span>100</span> КЛИЕНТ!</h1>
<div class="discount-pic"></div>
<div class="promotion-block">
<p class="promotion-title">АКЦИЯ!</p>
<p class="promotion-text">Вы можете получить дополнительную</p>
<p class="promotion-attn">СКИДКУ НА ВТОРОЙ ТОВАР!</p>
</div>
<div class="counter">
<h3>Скидкa 70%!</h3>
<div style="margin-top:74px; width:375px; text-align:center;">
<script src="http://e-timer.ru/js/etimer.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".eTimer").eTimer({
etType: 1, etDate: "22.07.2015.0.0", etTitleText: "До конца акции осталось:", etTitleSize: 20, etShowSign: 1, etSep: ":", etFontFamily: "Trebuchet MS", etTextColor: "#606060", etPaddingTB: 0, etPaddingLR: 0, etBackground: "white", etBorderSize: 0, etBorderRadius: 0, etBorderColor: "white", etShadow: " 0px 0px 0px 0px transparent", etLastUnit: 4, etNumberFontFamily: "Impact", etNumberSize: 26, etNumberColor: "black", etNumberPaddingTB: 0, etNumberPaddingLR: 6, etNumberBackground: "white", etNumberBorderSize: 0, etNumberBorderRadius: 5, etNumberBorderColor: "white", etNumberShadow: "inset 0px 0px 15px 0px #5b5757"
});
});
</script>
<script>
$(function() { // same as $(document).ready(function() {
$(".button").on("click", function() {
var row = $(this).attr("id");
var upsell_id = row.split('_');
Send_Req('/upsell/call_upsell.php?id=' + upsell_id[2] + '&upsell_id=' + upsell_id[1]);
$(this).text("Товар добавлен к заказу");
$(this).removeClass("button");
$(this).addClass("send");
})
});
function Send_Req(in_data) {
$.get( in_data, function( data ) {
//$( ".result" ).html( data );
});
}
</script>