November 11, 2008: +5 new patterned "rectangle" defaults!!
November 10, 2008: +10 new solid color "rectangle" defaults!
November 2, 2008: New site layout! ;D
November 1, 2008: + 60 Page Graphics
October 19, 2008: + Twilight Quotes
October 9, 2008: New Site layout :D
September 28, 2008: +2 new premade signs!
September 14, 2008: +10 New Extended Network Layouts
September 13, 2008: 1 New New Navi Layout (:
September 9, 2008: New Site Layout! Yay ;D
August 30, 2008: Added 15 new 100x100 icons(:
August 27, 2008: Added a PHP Includes Tutorial!
August 13, 2008: New site layout(; Enjoy!!
August 12, 2008: added 10 new short default 2's ;D
August 11, 2008: + 3 new hiatus banners(;
August 11, 2008: + 8 new picture captions
July 30, 2008: + 8 new comment boxes!
July 30, 2008: + 3 new navi layouts!(=
July 21, 2008: Style A Sign! Brand new! (More bgs & cutouts are coming soon!) click here
July 15, 2008: 1 new premade sign. 4 more coming soon!!
July 13, 2008: 2 new codes
July 12, 2008: +5 short default 2 layouts(=
July 11, 2008: 2 more new navi defaults!!
July 9 & 10, 2008: I took a break & went to a water park (=
July 8, 2008: 2 New layouts with a brand new stylesheet -works with the new navi bar! (more coming!)
July 7, 2008: New CONTACT TABLE section with 4 new contact tables!!
July 6, 2008: +Helpful Programs & downloads(=
July 5, 2008: 15 new music skins! Check 'em out ;D
July 4, 2008: Happy 4th of July!! + 40 new AIM icons
July 3, 2008: New site layout! Summer-ery and bright! I like it(=
July 2, 2008: 6 new summer quote graphics & 6 new about me headers
July 1, 2008: 5 new lyric quote graphics
June 29, 2008: New section: AIM Logos, 8 AIM logos, 2 new codes
June 22, 2008: 4 new Lyric Quote Graphics
June 20, 2008: 10 new short default 1 layouts!, 2 new premade signs!
June 16, 2008: 1 new premade sign!
June 15, 2008: 2 new premade signs!
June 14, 2008: 10 new colored skinny layouts, 5 default layouts!, 10 short default layouts, 3 new default layouts!, new FTP Programs tutorial
June 12, 2008 website help tutorial, installing cutenews tutorial!
June 7, 2008: Scrollbox codes, 2 new text codes!
xoxoxo
advertise here?





PHP Includes
Your site needs to have a server with php to complete this task

The Purpose: You know when you want to change your site layout, or want to add something to your side/menu bar and you really don't want to go though each file/page to change it to match all the other pages? This could take a long time and effort to do this. Well, now you don't have to! Yay, just follow the rest of this tutorial.

1. If your site is completely coded in .html like for example all your pages are, index.html, content.html, ect, you have to go though each file and change the page extention to .php, like index.php, content.php, ect. Every page has the same exact coding, but different content, right?

2. Now, were going to create a header.php file. Open one of your files. Copy everything above your content for that page. Open Notepad 0r another plain text editor. Paste what you just copied into a blank document. Save as header.php. Be sure to pick "all files" from the Save as Type dropdown box, not "text documents (.txt)"

3. Now, were going to create a footer.php file. Again, open one of your files. Now, copy everything below your content for that page. Use Notepad 0r another plain text editor again & paste what you just copied into a blank document. Save as footer.php. Be sure to pick "all files" from the Save as Type dropdown box, not "text documents (.txt)"

4. Last step(; Yay, now go and open & strip all of your pages. Get rid of the layout code. The only thing left in each page besides your footer & header pages, is just the content. Than add <?php include('header.php'); ?> above your content, & <?php include('footer.php'); ?> below your content.

Look at how simple each of your pages are now! You now only have to put the inlcude codes & type your content in each page. Isn't that great! :D Finally, save and re-upload all of your files. Next time you want to add something to all pages or change the layout you just have to change the header and footer files & every pages will change, if you did it correctly.

(Note: the page should look the same, and so will the source!)