View Single Post
  #3  
Old 5th September 2014, 09:24
hatijahat hatijahat is offline
Senior Member
 
Join Date: Dec 2012
Malaysia
Posts: 43
Default
working for me.. thanks..!!

just want to add, if someone using nexusphp..

try find this code in /include/functions.php
Code:
if ($logo_main == "")
{
?>

			<div class="logo"><?php echo htmlspecialchars()?></div>
			<div class="slogan"><?php echo htmlspecialchars()?></div>
<?php
put before :

Code:
$number_logo = 4;
$first = 1;
$random = mt_rand($first, $number_logo);
$logo_main = "pic/banners/banner$random.png";
Reply With Quote