Thursday, April 18, 2024

We Got Your Pack Deals, Sales, Coupons


We Got Your Pack

We Got Your Pack

WeGotYourPack.com is another niche site that targets the backpacking, trekking, and travel crowd. Right now, the site specializes in bags, packs, luggage, and accessories. For Spring 08, we will expand the selection to include more packs, more luggage, more accessories, plus… everything that goes in the pack or bag. That means, tents, sleeping bags, hostel sheets, and on and on.

Popular brands on WeGotYourPack.com are; The North Face, Patagonia, Osprey, Eagle Creek, Timbuk2, Sherpani and Gregory.

WE Got Your Pack Sale Items 50% and more off!




// If you change the boolean in the function call from true to false it will output full pagination links (eg. < Prev | 1 | 2 | 3 | Next >)
$strHtml = str_replace(““, getPawPagination($strHtml, true), $strHtml);

// Stream back the response
echo $strHtml;

function getPawPagination($strHtml, $blnSimpleStyle)
{
$strPaginationHtml = “”;
$intPaginationStart = strpos($strHtml, ““);
$intPaginationStart = ($intPaginationStart + 24);
$intLength = $intPaginationEnd – $intPaginationStart;
$strPagination = substr($strHtml, $intPaginationStart, $intLength);
$arrPagination = explode(“|”, $strPagination);
$intProductsPerPage = intval($arrPagination[0]);
$intProductCount = intval($arrPagination[1]);
$intPage = intval($arrPagination[2]);
if ($intPage == 0) { $intPage = 1; }

// Find the root URL for this page
if (isset($_SERVER[“REQUEST_URI”])) {
$strRootUrl = $_SERVER[“REQUEST_URI”];

// Strip off any parameters from our root URL, those will
// be re-added correctly below
$intPos = strpos($strRootUrl, “?”);
if ($intPos !== false) {
$strRootUrl = substr($strRootUrl, 0, $intPos);
}
}
else {
$strRootUrl = $_SERVER[“PHP_SELF”];
}

$strParams = “?”;
$intParamCount = 0;
foreach ($_GET as $key => $value) {
if ($key != “paw_page”) {
if ($intParamCount == 0) { $strParams .= $key . “=” . $value; }
else { $strParams .= “&” . $key . “=” . $value; }
}
$intParamCount++;
}

if ($strParams == “?”) { $strPaginationUrl = $strRootUrl . $strParams . “paw_page=”; }
else { $strPaginationUrl = $strRootUrl . $strParams . “&paw_page=”; }

if ($intProductCount > $intProductsPerPage) {
$intTotalPages = ceil($intProductCount/$intProductsPerPage);
}
else { $intTotalPages = 0; }

if ($intTotalPages > 0) {
if ($intPage > 1) { $strPaginationHtml = “< Prev “; }
else { $strPaginationHtml = “< Prev "; } if (!$blnSimpleStyle) { for ($i=1; $i<=($intTotalPages); $i++) { if ($intPage == $i) { $strPaginationHtml .= " | " . $i . " "; } else { $strPaginationHtml .= " | ” . $i . “ “; }
}

$strPaginationHtml .= ” | “;
}

if (($intPage + 1) <= $intTotalPages) { $strPaginationHtml .= " Next >“; }
else { $strPaginationHtml .= ” Next >”; }
}

return($strPaginationHtml);
}

?>