Since the information is not very confidential, I can suggest you to use Cookies (in case you don't want to use AJAX, but I still recommend you to use AJAX). People don't usually take the advantage of Cookies.
So, in PHP file, set the Cookies with your information:
$value = 'Hello';
setcookie("Information", $value);
And get it from HTML using Javascript (from W3School)
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name)
{
return unescape(y);
}
}
}