- Вывод результата PHP запроса в текущую HTML страницу
- How to Get HTML Tag Value in PHP | DOMDocument Object
- Example 1: PHP Get HTML Element Value
- Example 2: PHP Get HTML Element Value By ID
- Related Posts:
- Newsletter
- Find Us on Youtube
- Popular Posts
- Categories
- Как получить контент сайта на PHP
- Получение контента с помощью библиотеки SimpleHTMLDOM
- Получение контента с помощью cURL
- Продвинутый скрипт получения контента на PHP
Вывод результата PHP запроса в текущую HTML страницу
Добрый день.
Есть форма «Отслеживание» и её php обработчик. Все работает корректно, данные выводятся и форматируются. Но мне нужно, что бы результат запроса выводился на той же странице где находится форма, без перехода.
Короче говоря, нужно чтобы результаты запроса выводились в див — «divStatus»
div id="tracking" class="reveal-modal" align="center"> h1>Отслеживание отправлений/h1> form method="POST" action="orderSearch.php" OnSubmit="sendRequest(); return false"> p>Введите 9-и значный номер накладной которую хотите найти:/p> input name="sbill" type="text" id="sbill">br> input type="submit" value="Найти почтовое отправление"> /form> div id="divStatus" style="text-align: center; width:100%;">/div> a class="close-reveal-modal">×/a> /div>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
// Подключаем файл конфигурации базы данных include 'config.php'; $sbill = $_POST['sbill']; $sbill = mysql_real_escape_string($sbill); //Строим запрос о поиске наклодной и выполняем $query = "SELECT number_n, sitysend, datesend, sityarrival, datearrival, timearrival, recipient, comment FROM waybills where number_n = '$sbill'"; $result = mysql_query($query); // Если накладная не найдена выводим сообщение if(mysql_num_rows($result) == 0) { $status = "\"red\">Накладная ".$sbill." не найдена"; // Если найдена выводим все данные строки накладной } else { //Форматируем данные list($number_n, $sitysend, $datesend, $sityarrival, $datearrival, $timearrival, $recipient, $comment) = mysql_fetch_row($result); $status = "\"naklsearch\">
"; } mysql_close($link); echo $status; ?>\"2\">№ накладной \"2\">Место отправления \"3\">Место прибытия \"2\">Получатель \"2\">Комментарии Город Дата Город Дата Время $number_n $sitysend $datesend $sityarrival $datearrival $timearrival $recipient $comment
How to Get HTML Tag Value in PHP | DOMDocument Object
Inside this article we will see the concept i.e How to get HTML tag value in PHP. If you are looking of an article which makes you understand about How to parse HTML tags and elements then this article is best to get those concept.
DOMDocument object of PHP used to parse HTML string value. If we want to get tag name, it’s values etc then object will help for all those.
DOMDocument of PHP also termed as PHP DOM Parser. We will see step by step concept to get the HTML tag value using DOM parser.
Example 1: PHP Get HTML Element Value
Create a file index.php at your localhost directory. Open index.php and write this complete code into it.
This is Sample Text Message 1
This is Sample Text Message 2
This is Sample Text Message 3