Jump to content

Search the Community

Showing results for tags 'обратная саязь'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Development
    • HTML Coding
    • JavaScript
    • PHP
    • CMS
    • Database
    • Web Server
    • Web-site Development
    • Internet Marketing, SEO
  • Library
    • Tricks and solutions
    • Books
  • Commercial services
    • Freelance
    • Job
    • Goods and Services
  • Our Forum
    • Flame
    • Contests
    • Feedback and Ideas

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Web site


Telegram


Signal


Viber


Skype


From


Interests

Found 1 result

  1. Добрый день! Недавно у меня возникли проблемы с формой обратной связи - сообщения не приходили. Сайт я делал в Adobe Muse. Изначально форма имела такой вид ( я укажу лишь участок кода, чтобы внимание не распылять, так-как я думаю проблема именно в этом участке ) : $to = 'london@asiris.esy.es'; $subject = 'Home'; $message = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/plain ;charset=UTF-8"/><title>' . htmlentities($subject,ENT_COMPAT,'UTF-8') . '</title></head>'; $message .= '<body style="background-color: #ffffff; color: #000000; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: 18px; font-family: helvetica, arial, verdana, sans-serif;">'; $message .= '<h2 style="background-color: #eeeeee;">Отправка новой формы</h2><table cellspacing="0" cellpadding="0" width="100%" style="background-color: #ffffff;">'; $message .= '<tr><td valign="top" style="background-color: #ffffff;"><b>Имя:</b></td><td>' . htmlentities($_REQUEST["custom_U412"],ENT_COMPAT,'UTF-8') . '</td></tr>'; $message .= '<tr><td valign="top" style="background-color: #ffffff;"><b>Электронная почта:</b></td><td>' . htmlentities($_REQUEST["Email"],ENT_COMPAT,'UTF-8') . '</td></tr>'; $message .= '<tr><td valign="top" style="background-color: #ffffff;"><b>Сообщение:</b></td><td>' . htmlentities($_REQUEST["custom_U417"],ENT_COMPAT,'UTF-8') . '</td></tr>'; $message .= '</table><br/><br/>'; $message .= '<div style="background-color: #eeeeee; font-size: 10px; line-height: 11px;">Формы, отправленные с веб-сайта: ' . htmlentities($_SERVER["SERVER_NAME"],ENT_COMPAT,'UTF-8') . '</div>'; $message .= '<div style="background-color: #eeeeee; font-size: 10px; line-height: 11px;">IP-адрес посетителя: ' . htmlentities($_SERVER["REMOTE_ADDR"],ENT_COMPAT,'UTF-8') . '</div>'; $message .= '</body></html>'; $message = cleanupMessage($message); $formEmail = cleanupEmail($_REQUEST['Email']); $headers = 'From: london@asiris.esy.es' . "\r\n" . 'Reply-To: ' . $formEmail . "\r\n" .'X-Mailer: Adobe Muse 7.2.232 with PHP/' . phpversion() . "\r\n" . 'Content-type: text/plain ; charset=utf-8' . "\r\n"; Когда сообщение приходило на почту, оно имело такой вид : http://hostingkartinok.com/show-image.php?id=3e71dbd8e9f805af0c8198efe38599fc Потом я немного решил подредактировать код и сократил его до такого состояния : ( это тоже только часть кода ) $to = 'london@asiris.esy.es'; $subject = 'Home'; $message .= 'Имя: '.htmlentities($_REQUEST["custom_U412"],ENT_COMPAT,'UTF-8'). $message .= 'Электронная почта: '.htmlentities($_REQUEST["Email"],ENT_COMPAT,'UTF-8'). $message .= 'Сообщение: '.htmlentities($_REQUEST["custom_U417"],ENT_COMPAT,'UTF-8'). $message = cleanupMessage($message); $formEmail = cleanupEmail($_REQUEST['Email']); $headers = 'From: london@asiris.esy.es' . "\r\n" . 'Reply-To: ' . $formEmail . "\r\n" .'X-Mailer: Adobe Muse 7.2.232 with PHP/' . phpversion() . "\r\n" . 'Content-type: text/plain ; charset=utf-8' . "\r\n"; И теперь сообщения имеют такой вид : http://hostingkartinok.com/show-image.php?id=adf4627379375bc066c485ff4f1c96c3 Видно, что сообщение дублируется в графе "сообщения" Как сделать, чтобы, не было дублирования, и в сообщении все графы шли по порядку. Сначала "Имя" потом "Почта" а потом сам текст сообщения. Благодарю за ответ! Если понадобится, я могу приложить скрипт формы.
×
×
  • 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