You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
itspider
На сайте есть форма обратной связи
<form id="contact-form" action="post.php" method="post" enctype="multipart/form-data">
<fieldset>
<label><span class="text-form">Имя:</span><input name="name" type="text" /></label>
<label><span class="text-form">Email:</span><input name="email" type="text" /></label>
<label><span class="text-form">Телефон:</span><input name="tel" type="text" /></label>
<div class="wrapper"><div class="text-form">Сообщение:</div><textarea></textarea></div>
<div class="buttons">
<a class="button" href="#" onclick="document.getElementById('contact-form').reset()">Очистить</a>
<a class="button" href="#" onclick="document.getElementById('contact-form').submit()">Отправить</a>
</div>
</fieldset>
</form>
И скрипт отправки почты
<?php
$name = $_POST['name'];
if (empty($name))
{
echo "<script> alert('Не указано имя!'); document.location.href='http://страница сайта с формой ОС'; </script>";
exit;
}
else
{
$name = "не указано";
}
$email = $_POST['email'];
if (empty($email))
{
echo "<script> alert('Не указан E-Mail!'); document.location.href='http://страница сайта с формой ОС'; </script>";
exit;
}
else
{
$email = "не указано";
}
$tel = $_POST['tel'];
if (empty($tel))
{
echo "<script> alert('Не указан номер телефона'); document.location.href='http://страница сайта с формой ОС'; </script>";
exit;
}
else
{
$tel = "не указано";
}
$sub = $_POST['sub'];
$mess = $_POST['mess'];
if (empty($mess))
{
echo "<script> alert('Не указано сообщение!'); document.location.href='http://страница сайта с формой ОС'; </script>";
exit;
}
else
{
$mess = "не указано";
}
$address = "здесь моя почта";
$sub = "с сайта ";
$mes = "Имя: $name \nE-mail: $email \nТелефон: $tel \nТема: $sub \nСообщение: $mess";
$verify = mail ($address,$sub,$mes,"Content-type:text/plain; charset = utf-8\r\nFrom:$email");
if ($verify == 'true')
{
echo "Сообщение отправлено";
}
else
{
echo "Сообщение не отправлено";
}
header('location: http://страница сайт...мой ОС');//
?>
Не могу разобраться почему не уходят письма с сайта.
Если есть мысли прошу поделится.
Сам я в программировании не очень разбираюсь.
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.