Jump to content
  • 0

Github page


Endorphin
 Share

Question

Такой вопрос, есть сайт оформленный через гитхаб хостинг, на этом сайте есть отправка формы через php, но она не работает, в чем может быть причина? и вообще есть ли такой функционал на гитхабе, собственно вот форма отправки

<?php
header('Content-Type: text/html; charset=utf-8');
/* Задаем переменные */
$name = htmlspecialchars($_POST["f_name"], ENT_COMPAT, 'cp1251');
$email = htmlspecialchars($_POST["f_email"], ENT_COMPAT, 'cp1251');
$tel = htmlspecialchars($_POST["f_tel"], ENT_COMPAT, 'cp1251');
$message = htmlspecialchars($_POST["text_form"], ENT_COMPAT, 'cp1251');
$bezspama = htmlspecialchars($_POST["not_spam"], ENT_COMPAT, 'cp1251');
 
/* Ваш адрес и тема сообщения */
$address = "aleksfers@icloud.com";
$sub = "Сообщение с вашего сайта";
 
/* Формат письма */
$mes = "Сообщение с вашего сайта.\n
Имя отправителя: $name 
Электронный адрес отправителя: $email
Телефон отправителя: $tel
Текст сообщения:
$message";
 
 
if (empty($bezspama)) /* Оценка поля bezspama - должно быть пустым*/
{
/* Отправляем сообщение, используя mail() функцию */

$from  = "From: $name <$email> \r\n Reply-To: $email \r\n";
if (mail($address, $sub, $mes, $from)) {
	header('Refresh: 3; URL=https://alekseypn.github.io');
	echo 'Письмо отправлено, через 3 секунды вы вернетесь на главную страницу';}
else {
	header('Refresh: 3; URL=https://alekseypn.github.io');
	echo 'Письмо не отправлено, через 3 секунд вы вернетесь на главную страницу';}
}
exit; /* Выход без сообщения, если поле bezspama заполнено спам ботами */
?>

 

Link to comment
Share on other sites

3 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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy