<?php
include "connect.php";
$e = "$res";
$d1 = "<div class='new'>";
$d2 = "</div>";
echo $d1 . $e . $d2;
?>
<?php
include "connect.php";
$d = "<div class='new'></div>";
echo $d;
?>
function ajax() {
xhr = new XMLHttpRequest();
xhr.open("GET", "ajax.php", true);
xhr.onreadystatechange = function() {
if(xhr.status == 200) {
document.querySelector(".list").innerHTML = xhr.responseText;
}
}
xhr.send();
}
<?php
include "connect.php";
$num = 1;
$data = array(
' html' => '<div class="new">'.$res.'</div>'
);
echo json_encode($data);
?>
Что бы при запросе ajax к этому файлу в нём при каждом запросе $num увеличивался на 1?
<?php
include "connect.php";
echo '<div class="new"></div>';
?>
как такой код изменить на
console.log(JSON.parse(xhr.responseText).data0));