www.links-automation.com

For Option1, customise links page at your server

For Option1, customise your links page
Take note the instructions below apply to php and asp script, althought it is written specifically for php. For asp, just treat the .php as .asp script
1. Make sure there is a link from your home page to your link page. example <a href="../Links-Automation.php">links </a>. Our system will check for the link when you register your links.
2. Unzip the download zip files, you will have two php scripts:- Links-Automation.php and BodyOfLinks-Automation.php, make sure they are in the same directory in your web server.
3. BodyOfLinks-Automation.php, contains the code will generate the category and links page, do not edit or change it.
4. By itself Links-Automation.php , will generate your links page, if you do not want to customise the links page, just leave it in a directory in your server where your homepage can link to it.
5. To customise the Links page, use any text editor, example windows notepad, Macromedia Dreamweaver, etc to open Links-Automation.php.
6. You can customise the Links-Automation.php as any normal html page, just make sure the code <? include("BodyOfLinks-Automation.php");?>, is found at Links-Automation.php. The code <? include("BodyOfLinks-Automation.php");?> is used to generate the table of the members website category and link information. Hence put the <? include("BodyOfLinks-Automation.php");?> at a suitable place in Links-Automation.php.
7. There is also some CSS code for the Links table, make sure it is still intact in the Links-Automation.php. The CSS code is already embedded in the Links-Automation.php.The CSS code is shown below.
CSS code for your links table
<STYLE type="text/css" media="screen">
.CategoryTable
{
BORDER:1px solid black;
WIDTH: 100%;
}
.CategoryCell
{
TEXT-ALIGN: center;
BORDER:1px solid black;
}
.CategoryLink
{
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
COLOR: red;
FONT-SIZE:10pt;
FONT-WEIGHT: bold;
}
.LinkListingTable
{
BORDER:1px solid black;
WIDTH: 100%;
}
.LinkListing
{
MARGIN-TOP: 5px;
MARGIN-BOTTOM: 5px;
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
COLOR: black;
FONT-SIZE:10pt;
}
.LinkURL
{
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
COLOR: red;
FONT-SIZE:10pt;
FONT-WEIGHT: bold;
}
.NavigationText
{
MARGIN-TOP: 5px;
MARGIN-BOTTOM: 5px;
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
COLOR: black;
FONT-SIZE:10pt;
TEXT-ALIGN: center;
}
.NavigationLinks
{
MARGIN-TOP: 5px;
MARGIN-BOTTOM: 5px;
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
COLOR: blue;
FONT-SIZE:10pt;
TEXT-ALIGN: center;
}
.SearchTerm
{
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
FONT-SIZE:9pt;
}
.SearchSelectBox
{
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
FONT-SIZE:9pt;
}
.SearchSubmit
{
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
FONT-SIZE:9pt;
}
</STYLE>