Okay I'm pretty new to php..But I need help on something. How would I go about making a table on the sides of my site so i can place things like banner ads and stuff on them?...to get you to understand more here's my site: www.youtubeadvanced.com. I need to mostly put a table on the left side of the webpage so I can place banners, ads there. But i don't have a clue how to create the table and where to place it in the php document. Help would be appreciated
<?php //phpcode ?> <table> <tr> <td>table content</td> </tr> </table> you can separate html from php in a php file...you can use html in php but not php in html....
One thing you will want to do is to create an include file. Perhaps name it something like ads.php. Put your actual ad contents in this file. When you get straight on where you want to ads to appear simply call up that include file in the appropriate location. My apologies if this sounds vague, but it is really easy to do. You will have your ads and banners in one file so it makes changing them VERY quick and easy.
Puts on magic mind reading hat. *ohmmmmmmmmmm* Ill get back to you when this works, or when you post some code