View Single Post
  #9  
Old 06-13-2008, 04:02 AM
Donclurd's Avatar
Donclurd Donclurd is offline
Xfire: sgtrecoil
 
Join Date: Jun 2008
Posts: 4
Send a message via MSN to Donclurd Send a message via Skype™ to Donclurd
Default Re: Header and Footer.....Anyone?

Ok I have your solution goto your header.php or footer.php.
As you see there is alot of php like
Code:
include 'random.php';
Now lets do this in steps!

1. Make a new .php file named lets say... logo.php

2. Put your code in it can be either HTML or PhP for eg:
Code:
<html>
<head>
</head>
<body>
Bla bla bla
<img src="http://www.vodahost.com/vodatalk/vb3bluesaint/misc/logo.gif" >
</body>
</html>
So some stuff like that

3. Goto your header.php or footer.php and add this code close to the top.
Code:
include 'logo.php';
But remember must be in between the
Code:
<?php ?>
tags or you will get nothing.

And thats all to it you can see my example here.

Donclurd!

Good luck with it :D
Reply With Quote