Lead Generation - 
UniqueLeads
Member Login  
Username: 
Password: 
Forgot your password?
Lead Generation Navigation
Advertisers
Affiliates
Portfolio
Knowledge Center
About UniqueLeads
Contact Us
Careers
Lead Generation
UniqueLeads Site Map
Lead Generation

  Portfolio

The following are a sampling of uniqueleads current and former clients. This is by no means our complete portfolio. We have an in-house team of experts in the creation of cutting edge, effective marketing programs and media. Because of our many years of experience, we know how to create programs that work.


Free Credit Report 360 Tony Little's Body Alive
Google Cash Reader's Digest
Date.com Earn eBay Cash
Army Guiness
America-Health Crown Royal
1st Voice
60 Minute Money
$300 Dollars Again AU Home Biz Match
60 Second Debt Help Ewen Chia's Autopilot Profits
Anti Aging Bankcard Online
ArtSchools Children International
AU Pack Best Home UK
Free Diet Consultation Mommy Biz Finder
Bariatric Surgery Mexico Bizop France | Bizop Germany | Bizop India
Be Your Own Boss Change Your Whole Outlook
Break Away from your Dead-End Job Christian Values
Carbon Copy Pro Clear Voice Surveys.com
Christian Values Work From Home Consumer Home Business Match
Claim Your Vacation Debt Angel
Coastals Debt Free 2008
Culinary Schools Coastal Vacations
David Bach's Automatic Millionaire Diet Challenge Pack
Debt Avenger Discover Financial Freedom
Debt Match Earn at Home Online
Diet Bug Earn Microsoft Cash
DirectBuy ECN Research UK
Dollars 4 Gold Ecoquest
Driver Loans Erase My Debt
Earn $3000 EZ Short Sale
Easy Cash Advance Federal Grant Resources
ECN Research USA eDebt Assurance
EZ Lender Pro Family Freedom Network
Free Cash Locator Free Grant Network
Free Diet Consultation Free Market Report
FreelanceHomeWriters.com Galvanic
FucoSlim GetYourBillsPaid.co.uk
Google Riches Legal Solutions
Immigration Package Healthy Chocolate
Liberty Advisors Holiday Bucks
Money Rain Home Assure
Member Health Benefits Home Business Match
Investing In Success Home Security Systems
Money In Your Future John Cummuta
Nitro2Go NextgenForeclosures.com
OrthoEvra Legal Center Premium Dental Discount
Own Your Life Partner With Paul
Pass It On PerfSpot
Personal Success System Photo Printing
PlaceAbroad Bulgaria | Cyprus | Portugal Platinum One Destinations
Proactiv Solution Save up to 80%
Quick Cash Finder Quicker Auto Loans
Robert Allen's Multiple Streams of Income RealtyTrade.com
Sharp by design SMC | SMC 2 | SMC 3 | SMC 4
SpringDebtRelief.com Truman Financial
Stuff Your Wallet Seabiotics
ThisSiteisForReal.com Win Your Cruise - Imperial Majesty
UK Payday Your Bahamas Cruise
Viva Research WeLendCash.com
Wholesale Dropshipper Women's Health
   
April Fools Sites  
Free Brain Scan Free Online EMP
  
Proud Members of
 
Online Lead Generation Association International Association of Privacy Professionals South Florida Interactive Marketing Association American Marketing Association South Florida Chapter American Marketing Association
Online Lead Generation Association
Founding Member
International Association
of Privacy Professionals
South Florida Interactive
Marketing Association
American Marketing Association
South Florida Chapter
American Marketing Association

List ManagementKnowledge CenterContact UsMember LoginPrivacy PolicyDMCA Policy

©2007 Unique Leads, Inc. All Rights Reserved.
//Include Common Files @1-276EBEC3 define("RelativePath", "."); define("PathToCurrentPage", "/"); define("FileName", "portfolio.php"); include(RelativePath . "/Common.php"); include(RelativePath . "/Template.php"); include(RelativePath . "/Sorter.php"); include(RelativePath . "/Navigator.php"); //End Include Common Files //Include Page implementation @2-225E2145 include_once(RelativePath . "/header_nd.php"); //End Include Page implementation //Include Page implementation @8-294DAD93 include_once(RelativePath . "/menu.php"); //End Include Page implementation class clsGridportfolio { //portfolio class @4-62EA6A48 //Variables @4-C23F2C5F // Public variables var $ComponentType = "Grid"; var $ComponentName; var $Visible; var $Errors; var $ErrorBlock; var $ds; var $DataSource; var $PageSize; var $SorterName = ""; var $SorterDirection = ""; var $PageNumber; var $CCSEvents = ""; var $CCSEventResult; var $RelativePath = ""; // Grid Controls var $StaticControls; var $RowControls; //End Variables //Class_Initialize Event @4-BFEFAE50 function clsGridportfolio($RelativePath, & $Parent) { global $FileName; global $CCSLocales; global $DefaultDateFormat; $this->ComponentName = "portfolio"; $this->Visible = True; $this->Parent = & $Parent; $this->RelativePath = $RelativePath; $this->Errors = new clsErrors(); $this->ErrorBlock = "Grid portfolio"; $this->DataSource = new clsportfolioDataSource($this); $this->ds = & $this->DataSource; $this->PageSize = CCGetParam($this->ComponentName . "PageSize", ""); if(!is_numeric($this->PageSize) || !strlen($this->PageSize)) $this->PageSize = 100; else $this->PageSize = intval($this->PageSize); if ($this->PageSize > 100) $this->PageSize = 100; if($this->PageSize == 0) $this->Errors->addError("

Form: Grid " . $this->ComponentName . "
Error: (CCS06) Invalid page size.

"); $this->PageNumber = intval(CCGetParam($this->ComponentName . "Page", 1)); if ($this->PageNumber <= 0) $this->PageNumber = 1; $this->portfolio_priority = & new clsControl(ccsLabel, "portfolio_priority", "portfolio_priority", ccsInteger, "", CCGetRequestParam("portfolio_priority", ccsGet), $this); $this->description = & new clsControl(ccsLink, "description", "description", ccsText, "", CCGetRequestParam("description", ccsGet), $this); $this->description->Parameters = CCGetQueryString("QueryString", array("ccsForm")); } //End Class_Initialize Event //Initialize Method @4-90E704C5 function Initialize() { if(!$this->Visible) return; $this->DataSource->PageSize = & $this->PageSize; $this->DataSource->AbsolutePage = & $this->PageNumber; $this->DataSource->SetOrder($this->SorterName, $this->SorterDirection); } //End Initialize Method //Show Method @4-6A2DEB53 function Show() { global $Tpl; global $CCSLocales; if(!$this->Visible) return; $ShownRecords = 0; $this->DataSource->Parameters["expr7"] = 'Y'; $this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeSelect", $this); $this->DataSource->Prepare(); $this->DataSource->Open(); $this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeShow", $this); if(!$this->Visible) return; $GridBlock = "Grid " . $this->ComponentName; $ParentPath = $Tpl->block_path; $Tpl->block_path = $ParentPath . "/" . $GridBlock; if(($ShownRecords < $this->PageSize) && $this->DataSource->next_record()) { do { $this->DataSource->SetValues(); $Tpl->block_path = $ParentPath . "/" . $GridBlock . "/Row"; $this->portfolio_priority->SetValue($this->DataSource->portfolio_priority->GetValue()); $this->description->SetValue($this->DataSource->description->GetValue()); $this->description->Page = $this->DataSource->f("url"); $this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeShowRow", $this); $this->portfolio_priority->Show(); $this->description->Show(); $Tpl->block_path = $ParentPath . "/" . $GridBlock; $Tpl->parse("Row", true); $ShownRecords++; } while (($ShownRecords < $this->PageSize) && $this->DataSource->next_record()); } else // Show NoRecords block if no records are found { $Tpl->parse("NoRecords", false); } $errors = $this->GetErrors(); if(strlen($errors)) { $Tpl->replaceblock("", $errors); $Tpl->block_path = $ParentPath; return; } $Tpl->parse(); $Tpl->block_path = $ParentPath; $this->DataSource->close(); } //End Show Method //GetErrors Method @4-0B71726D function GetErrors() { $errors = ""; $errors = ComposeStrings($errors, $this->portfolio_priority->Errors->ToString()); $errors = ComposeStrings($errors, $this->description->Errors->ToString()); $errors = ComposeStrings($errors, $this->Errors->ToString()); $errors = ComposeStrings($errors, $this->DataSource->Errors->ToString()); return $errors; } //End GetErrors Method } //End portfolio Class @4-FCB6E20C class clsportfolioDataSource extends clsDBuniqueleads { //portfolioDataSource Class @4-FA1B865A //DataSource Variables @4-A7E53F7D var $Parent = ""; var $CCSEvents = ""; var $CCSEventResult; var $ErrorBlock; var $CmdExecution; var $CountSQL; var $wp; // Datasource fields var $portfolio_priority; var $description; //End DataSource Variables //DataSourceClass_Initialize Event @4-F232D151 function clsportfolioDataSource(& $Parent) { $this->Parent = & $Parent; $this->ErrorBlock = "Grid portfolio"; $this->Initialize(); $this->portfolio_priority = new clsField("portfolio_priority", ccsInteger, ""); $this->description = new clsField("description", ccsText, ""); } //End DataSourceClass_Initialize Event //SetOrder Method @4-013A6BF9 function SetOrder($SorterName, $SorterDirection) { $this->Order = "portfolio_priority"; $this->Order = CCGetOrder($this->Order, $SorterName, $SorterDirection, ""); } //End SetOrder Method //Prepare Method @4-66BB41D2 function Prepare() { global $CCSLocales; global $DefaultDateFormat; $this->wp = new clsSQLParameters($this->ErrorBlock); $this->wp->AddParameter("1", "expr7", ccsText, "", "", $this->Parameters["expr7"], "", false); $this->wp->Criterion[1] = $this->wp->Operation(opEqual, "is_active", $this->wp->GetDBValue("1"), $this->ToSQL($this->wp->GetDBValue("1"), ccsText),false); $this->Where = $this->wp->Criterion[1]; } //End Prepare Method //Open Method @4-B7C31B89 function Open() { $this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeBuildSelect", $this->Parent); $this->CountSQL = "SELECT COUNT(*) " . "FROM portfolio"; $this->SQL = "SELECT * " . "FROM portfolio {SQL_Where} {SQL_OrderBy}"; $this->CCSEventResult = CCGetEvent($this->CCSEvents, "BeforeExecuteSelect", $this->Parent); if ($this->CountSQL) $this->RecordsCount = CCGetDBValue(CCBuildSQL($this->CountSQL, $this->Where, ""), $this); else $this->RecordsCount = "CCS not counted"; $this->query($this->OptimizeSQL(CCBuildSQL($this->SQL, $this->Where, $this->Order))); $this->CCSEventResult = CCGetEvent($this->CCSEvents, "AfterExecuteSelect", $this->Parent); } //End Open Method //SetValues Method @4-C1DEA608 function SetValues() { $this->portfolio_priority->SetDBValue(trim($this->f("portfolio_priority"))); $this->description->SetDBValue($this->f("description")); } //End SetValues Method } //End portfolioDataSource Class @4-FCB6E20C //Include Page implementation @3-1A4F59A2 include_once(RelativePath . "/footer_nd.php"); //End Include Page implementation //Initialize Page @1-F3E1D26E // Variables $FileName = ""; $Redirect = ""; $Tpl = ""; $TemplateFileName = ""; $BlockToParse = ""; $ComponentName = ""; // Events; $CCSEvents = ""; $CCSEventResult = ""; $FileName = FileName; $Redirect = ""; $TemplateFileName = "portfolio.html"; $BlockToParse = "main"; $TemplateEncoding = "Windows-1252"; $PathToRoot = "./"; //End Initialize Page //Initialize Objects @1-6385262D $DBuniqueleads = new clsDBuniqueleads(); $MainPage->Connections["uniqueleads"] = & $DBuniqueleads; // Controls $header_nd = & new clsheader_nd("", "header_nd", $MainPage); $header_nd->Initialize(); $menu = & new clsmenu("", "menu", $MainPage); $menu->Initialize(); $portfolio = & new clsGridportfolio("", $MainPage); $footer_nd = & new clsfooter_nd("", "footer_nd", $MainPage); $footer_nd->Initialize(); $MainPage->header_nd = & $header_nd; $MainPage->menu = & $menu; $MainPage->portfolio = & $portfolio; $MainPage->footer_nd = & $footer_nd; $portfolio->Initialize(); $CCSEventResult = CCGetEvent($CCSEvents, "AfterInitialize", $MainPage); if ($Charset) header("Content-Type: text/html; charset=" . $Charset); //End Initialize Objects //Initialize HTML Template @1-D1583F7C $CCSEventResult = CCGetEvent($CCSEvents, "OnInitializeView", $MainPage); $Tpl = new clsTemplate($FileEncoding, $TemplateEncoding); $Tpl->LoadTemplate(PathToCurrentPage . $TemplateFileName, $BlockToParse, "Windows-1252", "replace"); $Tpl->block_path = "/$BlockToParse"; $CCSEventResult = CCGetEvent($CCSEvents, "BeforeShow", $MainPage); //End Initialize HTML Template //Execute Components @1-A0AFD346 $header_nd->Operations(); $menu->Operations(); $footer_nd->Operations(); //End Execute Components //Go to destination page @1-6A4B85CC if($Redirect) { $CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload", $MainPage); $DBuniqueleads->close(); header("Location: " . $Redirect); $header_nd->Class_Terminate(); unset($header_nd); $menu->Class_Terminate(); unset($menu); unset($portfolio); $footer_nd->Class_Terminate(); unset($footer_nd); unset($Tpl); exit; } //End Go to destination page //Show Page @1-DDE6DA8A $header_nd->Show(); $menu->Show(); $portfolio->Show(); $footer_nd->Show(); $Tpl->block_path = ""; $Tpl->Parse($BlockToParse, false); $main_block = $Tpl->GetVar($BlockToParse); $main_block = CCConvertEncoding($main_block, $FileEncoding, $CCSLocales->GetFormatInfo("Encoding")); $CCSEventResult = CCGetEvent($CCSEvents, "BeforeOutput", $MainPage); if ($CCSEventResult) echo $main_block; //End Show Page //Unload Page @1-2D77448E $CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload", $MainPage); $DBuniqueleads->close(); $header_nd->Class_Terminate(); unset($header_nd); $menu->Class_Terminate(); unset($menu); unset($portfolio); $footer_nd->Class_Terminate(); unset($footer_nd); unset($Tpl); //End Unload Page