Hello:
I have an HTML page which has two include statements within it.
The HTML code is below.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?php
$include = "http://www.interactiverates.com/quickquote.html?custid=3310";
include($include);
?>
<br />
<br />
<?php include("http://www.interactiverates.com/rates.html?custid=3310"); ?>
</body>
</html>
=========
The result of running this HTML page is a blank page.
The result should appear as in the following link:
http://www.summitwebcrafters.com/informed/test.php.
=========
I do not understand why the include statements work when I have the file named as test.php but it doesn't work when I have the file named as test.html.
The company which provides the information generated by the two URL's in the include statement state that the statements should work as an .html document.
Any ideas?
Thanks.