Jump to content
MakeWebGames

Help Please:)


John99

Recommended Posts

Re: Help Please:)

 

I believe its one of 3 things:

1. Different backgrounds when in jail or hospital

or

2. Different banners when in jail or hospital.

or

3. He really means where can he get milk from at 4am :-o

I know the last one :O

(the arab store on the corner....there open 24/7)

Link to comment
Share on other sites

Re: Help Please:)

 

I think he is wanting to know how to make the banner switch to a hospital banner or a jail banner when in hosp or jail. He knows it is in the header, but cant seem to make it work.

 

ive never tried that :P but im sure its not hard, I coded my header so it displays random banners every time you refresh.

http://notoriousonline.net

Link to comment
Share on other sites

Re: Help Please:)

its rather easy.. look in header for the line that prints out your banner. then change it like this:

$banner="<img src=regularbanner.jpg>";
if($ir['hospital']>0)
{
$banner="<img src=hospbanner.jpg>";
}
if($ir['jail']>0)
{
$banner="<img src=jailbanner.jpg>";
} 
print"$banner";
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...