OK, I am a bit slow and I don't understand how EZPages are generated. I have this code that I want to put on http://www.giftsbearsetc.com/store/index.php?main_page=page&id=1&chapter=0
via EZPages.
**<?php
/*<--- BEGIN MY LINK HELPER CODE --->
Making modifications to this code can cause your links page to stop working. Please only make
modifications where modifications are allowed. Being that this is a free service, we do not have
the resources to help you debug any changes you may have made. If you do run into problems with
this code, log into your account and download the original again.
*/
$OnCat = @$_GET["cid"];
if ($OnCat == "") {$OnCat = "0";} //Set to Main Directory Page
//You may name your links page anything you want. But for your links page to work correctly
//you must provide us with the name of your links page (without the '.php' extension).
$PageName = "resources"; // change this value to match your [PageName].php links page
//You may modify the following variable to change how many columns your main directory displays.
//By default this value is set to show 2 columns, but you may show as few as 1 column or
//as many as 4. Valid values (1,2,3,4)
$DirectoryCols = 2; // change this value to adjust how many columns your main directory page displays
//You may modify the following variable to change how many columns your sub category directory pages display.
//By default this value is set to show 2 columns, but you may show as few as 1 column or
//as many as 4. Valid values (1,2,3,4)
$SubCategoryCols = 2; // change this value to adjust how many columns your sub category pages display
//You may modify the following variable to display your links on a single page instead of
//directory style. This is a convenient way to display your links if you have fewer than 40.
$ShowAsSinglePage = 0; // change this value to 1 if you want a single page, or 0 for directory
$file = file("http://www.mylinkhelper.com/bin/phpdynfetch.asp?id=E65D16FF-A31E-4886-B052-9F52754E9A93&pagename=".$PageName."&cid=".$OnCat."&dircols=".$DirectoryCols."&subcols=".$SubCategoryCols."&single=".$ShowAsSinglePage);
if ($OnCat == "0") {
//This value is the title for your main directory page and can be modified
$sTitle = "Gifts Bears Etc.";
$GetLinks = $file[0];
} else {
$iPos = strpos($file[0], "|");
$sTitle = substr($file[0],0,$iPos);
$GetLinks = substr($file[0],$iPos + 1,strlen($file[0]));
}
//<--- END MY LINK HELPER CODE --->
?>
<!--
Place the following code into the location of your webpage template that you want your
directory to be displayed, it will assume the link syles and sizes you have defined
in your stylesheet.
Also, don't forget to use the "sTitle" variable to customize the page!
Please delete this comment when you implement your links directory.
-->
<title><?=$sTitle;?></title>
<?=$GetLinks;?>**
This will display a links page. What do I do? I need specific instructions or I will fail for sure! Thanks...