0
PHP variable in my HTML5 ?
Community Beginner
,
/t5/animate-discussions/php-variable-in-my-html5/td-p/11370534
Aug 19, 2020
Aug 19, 2020
Copy link to clipboard
Copied
Hello,
Is there a way to show a PHP variable in my HTML5 animation ?
Thank you.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/animate-discussions/php-variable-in-my-html5/m-p/11371950#M206826
Aug 19, 2020
Aug 19, 2020
Copy link to clipboard
Copied
if it's echo'd:
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();
///////////////
where date.php:
<?php
$dateVar = date("M-d-Y g:i A");
echo $dateVar;
?>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

