Siparis_Sonucsuz.php
$(document).ready(function(){

$(".liste").load("PageS/Load/Sonucsuz.php");

setInterval(function(){

fetch("PageS/Load/Sonucsuz.php")
.then(response => {
if (!response.ok) {
throw new Error("Network response was not ok");
}
return response.text();
})
.then(data => {
if (data === "") {
console.log("Yok");
} else {
if (data.indexOf("SesCal") !== -1) {
//sesin çalınacağı alan burası
console.log("ses çalınacak");

}
$(".liste").html(data);
}
})
.catch(error => {
console.error("Fetch error:", error);
});
}, 10000);
});
PageS/Load/Sonucsuz.php:

if($_SESSION['sonucsuz']!=0){
   if($_SESSION['sonucsuz']<$siparissayi){
   ?>
          <input type="hidden" class="d-none" value="SesCal" />
<!--bu kısma da eklenebilir işlev-->
  <?php
     }
 }