Welcome to the Valley of Nightmares! ---- There's nothing scary about this site, really, the site has nothing to do with the name - so ignore! =O Anyways, enjoy the site while it's alive because you never know when I will accidently press the red button over there in the corner...*coughcough* ^_^;

     Main.Page
     Splash.Page
     F.A.Q
     About.Us
     Contact.Us
     Affiliation
     VN.History
     VN.Characters
     Past.Layouts
     Linkage (In/Out)
     Our.Awards
     Win.an.Award
     Report.an Error!
     Arigatou.Thanks!

     VN.Radio.Blog
     VN.Blab Forums
     VN.Oekaki
     VN.Topsites
     Plushies.Paresu
     Final.Kiseki (fansite)

     Fun.Pokemon Pages
     DARE
     Mewonie.Baloney
     Ask.Snowbora
     Blonde.Quiz
     Personality.Quiz
     TUFV (noclickie!!)
     .......
     Random.Polls
     Funneh.Events
     Crazeh.Excuses
     How.To Annoy
     How.To.Annoy CU

     3D.Pokemon
     Pokemon.Images
     Fan.Art
     Fan.Fakes
     Art.Gallery

     Drabbles
     Touhi.Za.Kusari
     Solo (one shot)

     Red.:.Blue
     Gold.:.Silver
     Ruby.:.Sapphire
     FR.:.LG
     Dungeon.R/B
     R/S.Pokemon Sprites
     Eevee.Evolutions
     Weakness.Chart

     Video.Tutorials
     HTML.Tutorials
     Photoshop.Tutorials
     Oekakis.Setup
     PlugBoards.Setup
     RadioBlog.Help

     Free.Buttons
     Free.Layouts
     Layouts.Help
     Styleswitchers
     HTML.Tips
     SSI.PHP Include
     Web.Dictionary
     Source.Codes
     Tips.And.Tricks
     Web.Resources

     Photoshop.Brushes
     Winamp.Skins
     Anti-Anti.Pokemon
     All.About N00bs
     IM.Status Messages
.:: SSI/PHP Include ::.


So you've got a website with 15+ pages and you're finding it a real pain to have to edit every single page just to show one link? I present to you...

SSI!!


SSI, or Side Server Includes is a handy method which allows you to update the side bars of your site in one easy go!

First of all you need to check to see if your host supports SSI. It should say so in their hosting package, but if you're unsure you can always e-mail them. If your host doesn't support SSI then you can either switch to a host that does ooor...you could update every single page by itself XD

Secondly, you need to seperate your HTML code. To do this copy everything from the first <head> code all the way down to the way down to the start of the contents. Once you've done this paste it into a new file. You can call this file whatever you want, I'll call it leftmenu.txt

Now copy everything from the bottom of the content to the last <head> code into another file. Again you can call it whatever, we'll call it rightmenu.txt (you can see how imaginative I am XD)

Looking back at the file we've taken the codes out of, we should just be left with the actual contents of the page. Above the contents we need to put this code:

<!--#include virtual="leftmenu.txt"-->


This code is telling your computer to show whatever is in the leftmenu.txt folder on every page. Now go to the space below the content and put:

<!--#include virtual="rightmenu.txt"-->


Again, this is just telling the computer to show everything in the rightmenu.txt folder on every page.

Don't forget to do this on all of your pages!

Also, you can use PHP include for servers that does not support SSI but supports PHP. It's pretty much the same as SSI, only the tags are different:

<?PHP include('file.txt');?>


Pretty easy, eh?