Jump to content
  • 0

ПХП Обратная Связь


termoplus
 Share

Question

ребят подскажите что не так в этой обратной связи. Плюс нужно немного изменить поведение при отправки. точнее здесь при посылке открывается окно с сообщением, типа отправлено, хотелось бы чтобы при нажатии на "отправить" появлялось обычное виндовское окошко с информацией об отправке.

<?php

if (isset($_POST['name'])) {$name = $_POST['name'];}

if (isset($_POST['company'])) {$company = $_POST['company'];}

if (isset($_POST['phone'])) {$phone = $_POST['phone'];}

if (isset($_POST['email'])) {$email = $_POST['email'];}

if (isset($_POST['web'])) {$web = $_POST['web'];}

if (isset($_POST['message'])) {$message = $_POST['message'];}

$address = 'mail@gmail.com';

$sub = "Email from site";

$mes = "Name: $name \n Company: $company \n Phone: $phone \n Email: $email \n URL: $web \n Message: $message \n";

$verify = mail ($address,$sub,$mes,"Content-type:text/plain; charset = windows-1251\r\nFrom:$email");

if ($verify == 'true')

{

echo "<p>отправлено";

}

else

{

echo "<p>не отправлено";

}

?>

Edited by termoplus
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Информацию получает броузер и только он ею распоряжается.

Как вариант, можно выводить ту же страницу, чтобы пользователь особо ничего не заметил, только добавить туда JavaScript (функция alert) чтобы вывести диалог с информацией.

Link to comment
Share on other sites

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