const cardWrapper = document.querySelector('.cart-wrapper')
const CardKorzina = document.querySelector('.cart-cardkorzina')
let productArray = 0
window.addEventListener('click',function(event){
if(event.target.hasAttribute('data-card') ){
const card = event.target.closest('.card')
const productInfo = {
id: card.dataset.id,
imgSrc: card.querySelector('.img__card').getAttribute('src'),
title: card.querySelector('.iner-text').innerText,
price: card.querySelector('.price').innerText,
counter: card.querySelector('[data-counter]').innerText,
opisanie :card.querySelector('.opicasie-tovara').innerText,
};
const itemInCard = cardWrapper.querySelector(`[data-id="${productInfo.id}"]`)
if(itemInCard){
const counterElement = itemInCard.querySelector('[data-counter]')
counterElement.innerText = parseInt(counterElement.innerText) + parseInt(productInfo.counter)
}else{
const сartItemHTML = `
<div class="cart-item" data-id="${productInfo.id}">
<div class="img__card_wrapper_d"><img src="img1/Mask group.png" alt="" class="img__card_wrapper"></div>
<div class="omg">
<h3 class="iner-text_wrapper" id="title"> ${productInfo.title}</h3>
<h5 class="wrapper__opis">${productInfo.opisanie}</h5>
<p class="price_wrapper">${productInfo.price}</p>
<div class=" vie_con counter-wrapper" data-rot >
<div class="counter__button" data-pov="minus">X</div>
<div class="counter__input_wer" data-counter>${productInfo.counter}</div>
</div>
</div>
<hr class="line_wrapper">
</div>
`
cardWrapper.insertAdjacentHTML('beforeend', сartItemHTML)
}
toggleCartStatus()
calcCardPriceAndDelivery ()
}}
)
<?php
require_once('phpmailer/PHPMailerAutoload.php');
$mail = new PHPMailer;
$mail->CharSet = 'utf-8';
$name = $_POST['user_name'];
$email = $_POST['user_e-mail'];
$street = $_POST['user_street'];
$home = $_POST['user_home'];
$intercom = $_POST['user_intercom '];
$apartment = $_POST[' user_apartment '];
$floor = $_POST[' user_floor '];
$entrance = $_POST[' user_entrance '];
$cart = $_POST['.cart-item'];
$title = $_POST['title'];
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.mail.ru'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'zakaz-palermopizza@mail.ru'; // Ваш логин от почты с которой будут отправляться письма
$mail->Password = ''; // Ваш пароль от почты с которой будут отправляться письма
$mail->SMTPSecure = 'ssl'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465; // TCP port to connect to / этот порт может отличаться у других провайдеров
$mail->setFrom('zakaz-palermopizza@mail.ru'); // от кого будет уходить письмо?
$mail->addAddress('web-programmer955@mail.ru'); // Кому будет уходить письмо
//$mail->addAddress('ellen@example.com'); // Name is optional
//$mail->addReplyTo('info@example.com', 'Information');
//$mail->addCC('cc@example.com');
//$mail->addBCC('bcc@example.com');
//$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
//$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Заказ от гостя';
$mail->Body = 'Имя' .$name . 'e-mail' .$email .'Улица:' .$street. 'Дом:' .$home.'Домофон:' .$intercom.'Квартира:' .$apartment.'Этаж:' .$floor.'Подъезд:' .$entrance .'Заказ'.$title;
$mail->AltBody = '';
if(!$mail->send()) {
echo 'Error';
} else {
header('location: thank-you.html');
}
?>