Показать сообщение отдельно
  #5 (permalink)  
Старый 21.10.2014, 15:51
Кандидат Javascript-наук
Отправить личное сообщение для soltx Посмотреть профиль Найти все сообщения от soltx
 
Регистрация: 19.05.2013
Сообщений: 144

Сообщение от danik.js Посмотреть сообщение
$response = array('status'=>'OK', 'msg' => 'Тут месага');

header('Content-Type: application/json');
echo json_encode($response);


Только обычно вместо status:'ok'/'error' используют success:true/false
спс

только в самом send.php не совсем понял где вывести Content-Type и echo

<?php

//Retrieve form data. 
//GET - user submitted data using AJAX
//POST - in case user does not support javascript, we'll use POST instead
$fio = ($_GET['fio']) ? $_GET['fio'] : $_POST['fio'];
$phone = ($_GET['phone']) ?$_GET['phone'] : $_POST['phone'];
$adres = ($_GET['adres']) ?$_GET['adres'] : $_POST['adres'];

$response = array('status'=>'OK', 'msg' => 'Тут месага');
header('Content-Type: application/json');
echo json_encode($response);


//flag to indicate which method it uses. If POST set it to 1
if ($_POST) $post=1;

//Simple server side validation for POST data, of course, you should validate the email



//if the errors array is empty, send the mail
if (!$errors) {

	//recipient
	$to = 'Your Name <exampe@gmail.com>';	
	//sender
	$from = $fio . ' <example@gmail.com>';
	
	//subject and the html message
	$subject = 'Comment from ' . $name;	
	$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></head>
	<body>
	<table>
		<tr><td>Fio</td><td>' . $fio . '</td></tr>
		<tr><td>Phone</td><td>' . $phone . '</td></tr>
		<tr><td>Adres</td><td>' . $adres . '</td></tr>
	</table>
	</body>
	</html>';

	//send the mail
	$result = sendmail($to, $subject, $message, $from);
	
	//if POST was used, display the message straight away
	if ($_POST) {
		if ($result) echo 'Thank you! We have received your message.';
		else echo 'Sorry, unexpected error. Please try again later';
		
	//else if GET was used, return the boolean value so that 
	//ajax script can react accordingly
	//1 means success, 0 means failed
	} else {
		echo $result;	
	}

//if the errors array has values
} else {
	//display the errors message
	for ($i=0; $i<count($errors); $i++) echo $errors[$i] . '<br/>';
	echo '<a href="/">Back</a>';
	exit;
}


//Simple mail function with HTML header
function sendmail($to, $subject, $message, $from) {
	$headers = "MIME-Version: 1.0" . "\r\n";
	$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
	$headers .= 'From: ' . $from . "\r\n";
	
	$result = mail($to,$subject,$message,$headers);
	
	if ($result) return 1;
	else return 0;
}

?>

Последний раз редактировалось soltx, 21.10.2014 в 15:58.
Ответить с цитированием