View Single Post
  #5  
Old 04-28-2002, 01:26 AM
Trumpcard
Demi-God
 
Join Date: Jan 2002
Location: Charlotte, NC
Posts: 2,614
Default

Ok, heres another quick update..

This one will allow you to use a layout.php file to determine a consistant color scheme for your backgrounds, and a common header..

To use, edit the layout.php file to define your background color, and table colors..

This is optional to use.. If you dont want all your pages looking the same, then just comment out the PrintHeader function call in each .php page that calls it. I like this because it gives your pages a more consistant feel.

I also included a new .php called globalfunctions.php. Require 'ing it on each page gives you the ability to define your function once, and call it from any page.

I left the header empty for the time being.. Just an empty table right now with a couple of borders..

I also included a dump of the sql requried to make the new comments table. To make the new table, just do a

mysql
create database legends; #or whatever you want to call it
use legends;
source legend.sql
Reply With Quote