Almost done!... For now, only the tagboards up :|



Let's first start off with the requirements. Once you have all of this, you should first start with the design of the Tagboard. I like to get this out of the way. Let me explain what we will be doing in this tutorial.
Designing
First, create a file named "tagboard.php". Pretend it's like any other page. Think of the color you want your tagboard to be. Green? Blue? Purple?! It's your choice. Once you have chosen of a color, get the HTML color code for it (Black is #000000, etc). Once you have this, add this in your CSS.
Now, choose what you want the font to be. Typically, Verdana, Tahoma, and Helvetica work the best when it comes to 9 and 10px font sizes. Ocassionaly I change the font family for our tagboard. Also, pick what color you want the text to be.
That's pretty much going to be the design of your tagboard. If you want to be fancy and add things like background images, that's up to you. If you are going to do that, you do:
Creating the table
I'm pretty sure you know how to access your MySQL database, so do that now. Log in to your pMA (phpMyAdmin). Go to "Create new table" and type in the name Tagboard, with five fields. Make these fields "name", "message", "ip", "time", and "id". For "Type", choose VARCHAR, and for "Length" put 250, for all of the fields EXCEPT for id. For ID, choose type "INT", and under Extra, choose "auto_increment". Do you see the little key and then the column? Click on the bubble under that column for the ID field. This is what your table should basically be:

Inserting information into the table
Go back to your "tagboard.php" file. Put in the body:
Now, before ANY of your code on that page, put this:
Displaying messages
This part isn't really hard. Just add this after your form.
Wrapping it up
Everything should be working now. If it isn't, you messed up on something in the process. Enjoy your tagboard! If you have any questions or concerns, whatever, contact me.