Skip to main content
Known Participant
December 13, 2020
Question

pass data from php to JavaScript

  • December 13, 2020
  • 1 reply
  • 140 views

how can i pass data from php to adobe animate js file?

    This topic has been closed for replies.

    1 reply

    kglad
    Community Expert
    Community Expert
    December 13, 2020

    your js can open and retrieve data from a php file,

     

    var xmlhttp;

    if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp = new XMLHttpRequest();
    } else { // code for IE6, IE5
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xmlhttp.onreadystatechange = function () {
    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
    alert(xmlhttp.responseText);
    }
    }

    xmlhttp.open("GET", "date.php", true);
    xmlhttp.send();