Topic: My gallery
Again sorry, im trying to learn php best as I can by myself.
Ok, I have that miniportal thing installed on my board. I would like to have another page but in a different directory.
My forums main directory is like this
now I want to have this file placed in a part like this:
http://mywebsite.com/forums/pictures
Whats wierd is I got it to load all my info, but its not loading the gfx files. (like the css styles)
Tell me what I did wronge on my code please:
<?php
define('PUN_ROOT', '../');
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';
//Set the page title here
$page_title = pun_htmlspecialchars($pun_config['o_board_title']) . ' / Misc Pictures of August 9, 2006';
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
require PUN_ROOT.'include/parser.php';
?>
<div class="block">
<h2><span>The Gallery</span></h2>
<div class="box">
<div class="inbox">
<p> <strong><font color="#FF0000"><a href="http://www.mywebsite.com/forums/pictures/miscpics.php">Misc
Pictures of Today</a></font></strong></p>
</div>
</div>
</div>
<?php
require PUN_ROOT.'footer.php';
Here is what my page looks like.