PHP Classes

File: chat/testcors.php

Recommend this page to a friend!
  Classes of Free Ment   PHP Live Chat Browser   chat/testcors.php   Download  
File: chat/testcors.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Live Chat Browser
Live chat with users of the same or another site
Author: By
Last change:
Date: 1 year ago
Size: 1,980 bytes
 

Contents

Class file image Download
<?php

include('testcors.txt');
include(
'testcors2.php');

?>
<script src="jquery-3.6.0.min.js"></script>
<script>
$.ajax({
    type: 'GET',
    url: 'testcorsajax.php',
    //data: {person_id:getUserID},
    data: { },
    headers: {
// Header_Name_One: 'Header Value One', //If your header name has spaces or any other char not appropriate
// "Header Name Two": 'Header Value Two' //for object property name, use quoted notation shown in second
    // 'Accept': 'blah',
    // 'Sec-Fetch-Site': 'cross-origin',
    // 'Sec-Fetch-Mode': 'no-cors',
    },
    success: function(data){
        //alert(data);
        alert('data from testcorsajax.php: ' + data);
        //$("#processing").hide();
        //$("#person-data").html(data);
    }
});

$.ajax({
    type: 'GET',
    url: 'testcorsajax.php',
    data: { },
    success: function(data){
        alert('data from testcorsajax.php (again): ' + data);
    }
});

$.ajax({
    type: 'GET',
    url: 'testcorsajax2.php',
    data: { },
    success: function(data){
        alert('data from testcorsajax2.php (again): ' + data);
    }
});

$.ajax({
    type: 'GET',
    url: 'testcorsajax3.php',
    data: { },
    success: function(data){
        alert('data from testcorsajax3.php: ' + data);
    }
});

/*$.ajax({
    type: 'GET',
    url: 'testcorsajax2.php',
    //data: {person_id:getUserID},
    data: { },
    headers: {
// Header_Name_One: 'Header Value One', //If your header name has spaces or any other char not appropriate
// "Header Name Two": 'Header Value Two' //for object property name, use quoted notation shown in second
    // 'Accept': 'blah',
    // 'Sec-Fetch-Site': 'cross-origin',
    // 'Sec-Fetch-Mode': 'no-cors',
    },
    success: function(data){
        //alert(data);
        alert('data from testcorsajax2.php: ' + data);
        //$("#processing").hide();
        //$("#person-data").html(data);
    }
});*/
</script>