I have a cron job that runs a php script and exports the results into an html file called subnetreport.html and what I would like to do is create a blog that is called Daily Subnet Report and when they open it up I could put some intro text and was hoping I could read the html file and display contents (it's basically a table)
I thought about doing html and include code like this but not having any luck
<html>
<head>
<script src="/jquery.js"></script>
<script>
$(function(){
$("#includedContent").load("subnetreport.html");
});
</script>
</head>
<body>
<div id="includedContent"></div>
</body>
</html>
Any suggestions on how I can do this.