In Tro Basic HTML Fonts Images Links Marquees Backgrounds Tables FieldSet, TextArea Lists CSS Cursors Divs Page Anchors I Frame Image Maps Music Flash E mail Form Pop Ups Drop Down Menu - MySpace Edits - Center Profile Hide Extended Network Hide Details Section Hide Last Login Hide Contact Box Hide Your Friends Hide General Info. Hide Comments Hide Friends/Comments Hide Search Form Move Contact Box Remove MySpace Links Remove URL Box Resize Comment Images Reverse Com & Friends Scrollable Comments Dot Comers Grey Matter Mega Book Tag Board PHP FTP CHMOD CPanel Scripts Paint Shop Pro Animation Shop Vector Cheat Radio Blog My Space HTML Tester Help Links Color Chart Get-Hosting.net DaRicanBoi.com OrlandoSotoJr.com SoDamnCocky.com MySpace.com/S.D.C. |
PHPWhat you should do 1st, is check your hosting provider and make sure they allow php on your server. If they do not allow it, then you can't use it. Change your content files to php extension. [.html, .htm to .php] These files should only contain the content info in a DIV. Content such as Bio, Images, Links..... EX: Your BIO file might look like this: <?php include ("top.php"); ?> <div style="position:absolute;top:0px;left:0px;align:left;font-family:arial;font-size:11px;color:#FFFFFF"?> Bio Content: </div> <?php include ("bottom.php"); ?> Now you have to create the MAIN PHP Files. There will be two. Use Note Pad, or any text editor, and add your codes for "top.php" which will contain all your CSS, Java, Image, Image Maps, Navigation and whatever else that you want to show on all your web files when someone views them. Now make "bottom.php" here add the codes for whatever you want to show at the bottom of your web files. Now add this code to top of your content files: <?php include ("top.php"); ?> Now add this code to bottom of your content files: <?php include ("bottom.php"); ?> The "top.php" file will contain all your codes for your Image Layout, CSS, Java, everything that you want to show ABOVE the Div with the content. The code <?php include ("top.php"); ?> will link to that file and when you go to http://yoursite.com/bio.php you will see the entire layout with the Bio Content. The "bottom.php" file will contain all your codes for whatever you want to show UNDER the Div with the content. The code <?php include ("bottom.php"); ?> will link to that file and when you go to http://yoursite.com/bio.php you will see the the bottom part of the layout. Questions & Answers |