Jump to content
  • 0

всплывающее окно после отправки формы?


CroaToa
 Share

Question

Здравствуйте. Есть разметка html

 

<form  action="mail.php" method="post" enctype="multipart/form-data" id="contactForm">						<div class="select-wrap">							<p>Выберите тип обращения:</p>							<select class="styler" name="styler">								<option value="1">поле 1</option>								<option value="2">поле 2</option>							</select>						</div>						<div class="inp-wrap">							<label for="name">Ваше имя <span>*</span></label>							<input type="text" class="styler" placeholder="Ваше имя..." required id="name" name="name">							<label for="email">Ваш E-mail <span>*</span></label>							<input type="email" class="styler" placeholder="Ваш E-mail..." required id="email" name="email">						</div><!-- inp-wrap -->						<label for="your-message">Ваше сообщение <span>*</span></label>						<textarea class="styler" id="your-message" required placeholder="Ваше сообщение..." name="message"></textarea>						<div class="subm-and-file-wrap">							<input type="file" class="upload-your-file" name="attachment">							<div class="submit-wrapper">								<button type="submit" class="submit"></button>							</div>						</div>					</form> 

 

И php который все это отправляет на мыло

 

<?phpclass Sendform {	// От чьего имени и от какого адреса отправлять. При необходимости можно изменить	private static $from_name = 'xxxx';	private static $from_email = 'xxxx';	private static $to_email = 'xxxx';	// Отправка формы	public function send() {		$name = self::getvar('name');		$email = self::getvar('email');		$message = self::getvar('message');		$styler = self::getvar('styler');		$from_email = self::mime_encode(self::$from_name,"UTF-8")." <".self::$from_email.">";		$tmpName = $_FILES['attachment']['tmp_name']; 		$fileType = $_FILES['attachment']['type']; 		$fileName = $_FILES['attachment']['name'];		switch ($styler) {			case '1':				$st = 'поле 1';				break;			case '2':				$st = 'поле 2';				break;		}		$subject = 'xxxx';		$text = "Имя: $nameE-mail: $emailТип обращения: $stСообщение: $message";		if($fileName) {			$un        = strtoupper(uniqid(time()));			$head      = "From: $from_email\n";			$head     .= "To: ".self::$to_email."\n";			$head     .= "Subject: ".self::mime_encode($subject,'UTF-8')."\n";			$head     .= "X-Mailer: PHPMail Tool\n";			$head     .= "Mime-Version: 1.0\n";			$head     .= "Content-Type:multipart/mixed;";			$head     .= "boundary=\"———-".$un."\"\n\n";			$zag       = "————".$un."\nContent-Type:text/plain; charset=UTF-8\n";			$zag      .= "Content-Transfer-Encoding: 8bit\n\n$text\n\n";			$zag      .= "————".$un."\n";			$zag      .= "Content-Type: application/octet-stream;";			$zag      .= "name=\"".$fileName."\"\n";			$zag      .= "Content-Transfer-Encoding:base64\n";			$zag      .= "Content-Disposition:attachment;";			$zag      .= "filename=\"".$fileName."\"\n\n";			$zag      .= chunk_split(base64_encode(file_get_contents($tmpName)))."\n";			mail(self::$to_email, self::mime_encode($subject,'UTF-8'), $zag, $head);		} else {			$from_email = self::mime_encode(self::$from_name,"UTF-8")." <".self::$from_email.">";			$head="From: ".self::$from_email."\r\n";			$head.="X-Mailer: Sertse Mailer\r\n";			$head.="Content-Type: text/plain; charset=UTF-8\r\n";			$head.="Content-Transfer-Encoding: 8bit\r\n";			$head.="X-Priority: 3\r\n";			mail(self::$to_email, self::mime_encode($subject,'UTF-8'), $text, $head);		}	}	// Вспомогательная процедура для кодирования заголовков	private static function mime_encode($text,$charset) {         return "=?".$charset."?B?".base64_encode($text)."?=";	}		// Очистка и экранирование вредных символов	private static function getvar($name) {		return addslashes(htmlspecialchars(strip_tags($_POST[$name])));	}	}$reg = new Sendform;if(isset($_POST['name'])) $reg->send();?> 

 

Вопросы:

1. Как можно делать, что бы после отправки сообщения появилось всплывающее окно в котором будет моя html разметка?

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

 

Сейчас происходит так: заполнил форму, нажал на кнопку отправки и ничего абсолютно не намекает что письмо отправлено.. Даже обновление страницы не происходит. Но письма идут нормально.

 

Даже не знаю в правильном месте ли я создал тему (читал что подобное делается через js), если все же через php надо, просьба перенести в соответствующий раздел.

Edited by CroaToa
Link to comment
Share on other sites

1 answer 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