I'm putting a walkthrough on my site so I'm making alot of files (not made yet) that means I need a new folder because my site isn't that big yet this is my first folder with files (other than my image folder) for my website I tried some includes and the one that uses a file in the same folder works but the ones that have files outside the folder don't work and I used my full domain http://www.pokebomb.co.cc/thefile.whatever below is the code
Code:
<html>
<head>
<title>Pokebomb</title>
<?php include('http://www.pokebomb.co.cc/top.html'); ?>
<h2> HG/SS Walkthrough</h2>
<?php include('contents.html'); ?>
<h2>A journey begins</h2>
<p>GIANT WALKTHROUGH PARAGRAPH</p>
</td>
<?php include('http://www.pokebomb.co.cc/rightctp.html'); ?>
<?php include('http://www.pokebomb.co.cc/rightcbottom.html'); ?>
</td>
</tr>
</table>
</body>
</html>