I am trying to use a random photo script on my index page. But for some reason the pictures are showing up outside of the block??? Can somebody look at the code and see if they can spot my problem?
If anybody can spot what i need to do i would much appriciate it
here is the code
Code:
<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (eregi("block-pic.php",$_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}
$content = include ("http://www.sweetquads.com/thumbincluder.php");
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (eregi("block-someblock.php",$_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}
$content = include ("block-random.php" );
?>
But it outputs the contents above and outside the title for the block.
Does Anyone know whats goinb on here??
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum