close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

redirect add to cart button

Thread began 12/22/2013 6:03 pm by Sam Barnhart | Last modified 3/14/2014 10:30 am by Sam Barnhart | 2671 views | 7 replies

Sam Barnhart

redirect add to cart button

The add to cart buttons have never redirected to any page. Once they are click, it just displays the same page. I would like them to go the the cart.php page. Ive searched the forum and tried a few suggestion but none work. Can anyone help. Seems like it should be simple but Im a novice at php. Thanks in advance.

Sam

Heres my code:
<?php
//WA eCart Include
require_once("WA_eCart/TotalCatECART_PHP.php");
?>
<?php require_once('Connections/TTCStoreConnection.php'); ?>
<?php
$TotalCatECART->GetContent();
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
?>
<?php
$currentPage = $_SERVER["PHP_SELF"];
?>
<?php
$maxRows_WADAproducts = 6;
$pageNum_WADAproducts = 0;
if (isset($_GET['pageNum_WADAproducts'])) {
$pageNum_WADAproducts = $_GET['pageNum_WADAproducts'];
}
$startRow_WADAproducts = $pageNum_WADAproducts * $maxRows_WADAproducts;

mysql_select_db($database_TTCStoreConnection, $TTCStoreConnection);
$query_WADAproducts = "SELECT ProductID, ProductSKU, ProductName, ProductPrice, ProductWeight, ProductCartDesc, ProductShortDesc, ProductLongDesc, ProductThumb, ProductImage, ProductCategoryID, ProductUpdateDate, ProductStock, ProductLive, ProductUnlimited, ProductLocation FROM products ORDER BY ProductID ASC";
$query_limit_WADAproducts = sprintf("%s LIMIT %d, %d", $query_WADAproducts, $startRow_WADAproducts, $maxRows_WADAproducts);
$WADAproducts = mysql_query($query_limit_WADAproducts, $TTCStoreConnection) or die(mysql_error());
$row_WADAproducts = mysql_fetch_assoc($WADAproducts);

if (isset($_GET['totalRows_WADAproducts'])) {
$totalRows_WADAproducts = $_GET['totalRows_WADAproducts'];
} else {
$all_WADAproducts = mysql_query($query_WADAproducts);
$totalRows_WADAproducts = mysql_num_rows($all_WADAproducts);
}
$totalPages_WADAproducts = ceil($totalRows_WADAproducts/$maxRows_WADAproducts)-1;
?>
<?php
$queryString_WADAproducts = "";
if (!empty($_SERVER['QUERY_STRING'])) {
$params = explode("&", $_SERVER['QUERY_STRING']);
$newParams = array();
foreach ($params as $param) {
if (stristr($param, "pageNum_WADAproducts") == false &&
stristr($param, "totalRows_WADAproducts") == false) {
array_push($newParams, $param);
}
}
if (count($newParams) != 0) {
$queryString_WADAproducts = "&" . htmlentities(implode("&", $newParams));
}
}
$queryString_WADAproducts = sprintf("&totalRows_WADAproducts=%d%s", $totalRows_WADAproducts, $queryString_WADAproducts);
?>
<?php
// WA eCart AddToCart
if (isset($_POST["TotalCatECART_1_ATC"]) || isset($_POST["TotalCatECART_1_ATC_x"])) {
$ATC_itemID = $_POST["TotalCatECART_1_ID_Add"];
$ATC_AddIfIn = 0;
$ATC_RedirectAfter = "";
$ATC_RedirectIfIn = "";
if (isset($totalRows_WADAproducts) && $totalRows_WADAproducts > 0) {
$row_WADAproducts = WAEC_findRecordMySQL($WADAproducts, "ProductID", $ATC_itemID);
if ($row_WADAproducts) {
$ATC_itemName = "".$row_WADAproducts['ProductName'] ."";// column binding
$ATC_itemDescription = "".$row_WADAproducts['ProductShortDesc'] ."";// column binding
$ATC_itemThumbnail = "".$row_WADAproducts['ProductThumb'] ."";// column binding
$ATC_itemWeight = floatval("0");// column binding
$ATC_itemQuantity = "".$_POST["TotalCatECART_1_Quantity_Add"] ."";// column binding
$ATC_itemPrice = floatval("".$row_WADAproducts['ProductPrice'] ."");// column binding
mysql_data_seek($WADAproducts, 0);
$row_WADAproducts = mysql_fetch_assoc($WADAproducts);
}
}
$ATC_itemQuantity = floatval($ATC_itemQuantity);
if (is_numeric($ATC_itemQuantity) && $ATC_itemQuantity != 0) {
$TotalCatECART->AddToCart($ATC_AddIfIn, $ATC_RedirectIfIn, $ATC_itemID, $ATC_itemName, $ATC_itemDescription, $ATC_itemThumbnail, $ATC_itemWeight, $ATC_itemQuantity, $ATC_itemPrice);
if ($ATC_RedirectAfter != "" && $TotalCatECART->redirStr == "") {
$TotalCatECART->redirStr = $ATC_RedirectAfter;
}
if (isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING'] != "") {
$_SESSION['WAEC_ContinueRedirect'] = $_SERVER['PHP_SELF']."?".$_SERVER['QUERY_STRING'];
}
else {
$_SESSION['WAEC_ContinueRedirect'] = $_SERVER['PHP_SELF'];
}
}
}
?>
<?php
// WA eCart Redirect
if ($TotalCatECART->redirStr != "") {
header("Location: ".$TotalCatECART->redirStr);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/FirstPage Template.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- InstanceBeginEditable name="doctitle" -->
<title>Results products</title>

<link href="WA_DataAssist/styles/Refined_Granite Pine.css" rel="stylesheet" type="text/css" />
<link href="WA_DataAssist/styles/Arial.css" rel="stylesheet" type="text/css" />
<style type="text/css">
/* Title Section */
#WADAPageTitleArea {
width: 735px;
}
#WADAPageTitleArea div, #WADAPageTitleArea p {
font-size: 11px;
padding-bottom: 10px;
}
#WADAPageTitleArea div#WADAPageTitle, #WADAPageTitle {
font-size: 14px;
font-weight: bold;
}

.WADAResults {
font-size: 11px;
margin-top: 10px;
}

.WADAResultsNavigation {
border: 1px solid #BBC2C2;
padding: 2px;

height: 22px;

}
.WADAResultsCount {

padding-top: 4px;

text-align: right;
float: right;
}

#WADAResultsNavTop {
margin-left: 3px;
float: right;
}
.WADAResultsNavTable {
margin: 0px;
}
.WADAResultsNavTable td {}

.WADAResultsInsertButton {
margin-left: 3px;
float: right;
}
#WADAResultsTable {
margin-top: 10px;
margin-bottom: 10px;
}
.WADAResultsEntry {

padding-bottom: 10px;
}

.WADAResultThumbArea {

float: left;

}

.WADAResultInfoArea {


margin-left: 170px;


}
.WADAResultTitle {
font-size: 14px;
font-weight: bold;
}
.WADAResultDescription {
margin-top: 2px;
}

.WADAResultCommerceArea {
margin-top: 10px;
}
.WADAResultCommerceButton {
float: right;
}
.WADAResultPrice {
float: right;
font-size: 12pt;
}


.WADARecordNavigationButtons {

margin-top: 20px;


}

.WADAResultsBackTop {
float: left;
}
.WADAResultsCountBottom {

padding-top: 4px;

text-align: right;
float: right;
}

#WADAResultsNavBottom {
margin-left: 3px;
float: right;
}
.WADAResultPrice1 {
float: right;
font-size: 12pt;
}
</style>

<!--Start Google Verification-->
<meta name="google-site-verification" content="OLGH2aaT3VWVx2jNOY0t2xVU2kCiLtxvIKxG325xMts" />
<!--End Google Verification-->

<!--Start Google Analytics Tracking-->
<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17381726-2']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

<!--End Google Analytics Tracking-->

<!-- InstanceEndEditable -->

<link rel="stylesheet" href="ajxlightbox_Video%20R%20Nav%20Salmonella.css" type="text/css" />
<script src="ajxlightbox_Video%20R%20Nav%20Salmonella.js" type="text/javascript"></script>


<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="layout.css" rel="stylesheet" type="text/css" />

<!--[if lt IE 7]>
<script type="text/javascript" src="../js/ie_png.js"></script>
<script type="text/javascript">
ie_png.fix('#logo');
</script>
<![endif]-->

<script src="js/jquery-1.4.2.js" type="text/javascript"></script>
<script src="js/cufon-yui.js" type="text/javascript"></script>
<script src="js/cufon-replace.js" type="text/javascript"></script>

<script src="js/RomanSerif_500.font.js" type="text/javascript"></script>

<script src="js/jquery.faded.js" type="text/javascript"></script>

<style type="text/css">
<!--
.style1 {font-weight: bold}
.style2 {
font-size: 16px
}
-->
</style>

<script type="text/javascript">
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
</script>


<!--Start Google Analytics Tracking-->
<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17381726-2']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

<!--End Google Analytics Tracking-->



<!-- ++++ Script for ShareThis Tag for Email START ++++ -->
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "94bbd555-34c4-439b-8b39-0a92b520ea99"});</script>
<!-- ++++ Script for ShareThis Tag for Email END ++++ -->

</head>

<body id="page1" onload="MM_preloadImages('plugins/images/Button_shopping_cart_RO.png')">
<div class="extra">
<div class="body1">
<div class="main">
<!--header -->
<div id="header">
<div class="wrapper">
<div class="Header_Logo_Div"><img src="images/Header%20Store%20Name.png" alt="" width="518" height="97" /></div>

<div id="Header_buttons_right_side">
<div style="float: left; height: 20px; width: 200px; ">


<!-- ++++ShareThis Tag for email START ++++ -->
<span class='st_email' style="float:left;"displayText='Share with A Friend' ></span>
<!-- ----ShareThis Tag for email END ---- -->
</div>

<a href="cart.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Cart Button','','plugins/images/Button_shopping_cart_RO.png',1)"><img src="images/Button_shopping_cart.png" width="160" style="margin-top:5px;" id="Cart Button" /></a>
<p>&nbsp;</p>
</div>
<div class="cleardiv"></div>

<div id="Nav_Header">
<h3><a href="index.php">Home / Product</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="FAQ_Raw_Diet.html">Raw Diet FAQ</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="Autoship_Program.html">Autoship Program</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="resources.html">Helpful Links</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="About_Us.html">About Us</a> <img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="contactus.html">Contact Us</a></h3>
</div></div>


<div class="cleardiv"></div>
<div class="wrapper_slideshow">

<!-- slider begin -->
<div id="faded">
<div class="rap">
<!--Place image code for slide show here START-->
<!--Place image code for slide show here START-->

<img src="images/img1.jpg" alt="" width="693" height="364" />
<img src="images/img2.jpg" alt="" width="693" height="364" />
<img src="images/img3.jpg" alt="" width="693" height="364" />
<img src="images/img4.jpg" alt="" width="693" height="364"/>
<img src="images/img5.jpg" alt="" width="693" height="364"/>

<!--Place image code for slide show here END-->
<!--Place image code for slide show here END-->
</div>
</div><!-- slider END -->

<ul id="banners">
<li id="banner1"><a href="benefits_of_a_Raw_Diet.html" class="style2">The BENEFITs<br />
OF A Fresh<br />
RAW Diet</a></li>
<li id="banner2"><a href="how_to_prepare_raw_food.html">HOW TO<br />
Prepare A<br />
Raw Diet</a></li>
<li id="banner3"><a href="why_choose_tcfeline_premix.html">WHY PICK <br />
TCFELINE<br />
Premix
</a></li>
</ul>


<!-- slider end -->
</div>
</div>

<!--header end-->
</div>
</div>
<div class="main">
<!--content -->
<div id="content"><!-- InstanceBeginEditable name="EditRegion1" -->
<div class="col2">
<div class="wrapper">



<div align="center" style="margin-bottom: 30px; border-bottom-color: #8EA972; border-bottom-style: dotted; border-right-width: thin;">

<p style="font-size:18pt; line-height:22pt; color:#C63;">Your Exclusive Feline Store providing Raw Cat Food Diets and
<br />
Whole Body Care

through a NaturalĀ and Holistic means.</p>
<p style="font-size:11pt; line-height:22pt; color:#C63;"><strong>Featuring TCfeline Premix... for a Quick, Easy &amp; Affordable Solution</strong></p>
<p style="font-size:11pt; line-height:12pt; color:#C63;"><strong>to making Homemade Raw Cat Food.</strong></p>
<p style="font-size:11pt; color:#555555;line-height: 8pt;">&nbsp;</p>
</div>





<div class="WADAResultsContainer"> <a name="top"></a>
<div id="WADAPageTitleArea" align="center" style="font-size:22px; line-height: 25px;"><span style="color:#000;"><strong>For help with issues placing orders, please call<br />
717 524-1949 or email info@thetotalcat.com.</strong></span><br />
<br /><strong>
We ship all orders the next day via USPS Priorty Mail! *</strong><br />
<p style=" font-size: 9pt; "><strong><a href="returnpolicy.html">SHIPPING RATES & POLICY</a></strong><div id="WADAPageTitle"></div>
</div>
<?php if ($totalRows_WADAproducts > 0) { // Show if recordset not empty ?>
<div class="WADAResults">
<div class="WADAResultsNavigation">
<div class="WADAClearRight"></div>
<div id="WADAResultsNavTop">

</div>
<div class="WADAResultsCount">Records
<?php echo ($startRow_WADAproducts + 1) ?>
to
<?php echo min($startRow_WADAproducts + $maxRows_WADAproducts, $totalRows_WADAproducts) ?>
of
<?php echo $totalRows_WADAproducts ?>
</div>
<div class="WADAClearRight"></div>
</div>
<table width="638" border="0" cellpadding="0" cellspacing="0" id="WADAResultsTable" >
<?php do { ?>
<tr>
<td class="WADAResultsEntry"><div class="WADAResultThumbArea"><a href="products_Detail.php?ProductID=<?php echo(rawurlencode($row_WADAproducts['ProductID'])); ?>" title=""><img src="images/images_thumb/<?php echo $row_WADAproducts["ProductThumb"]; ?>" alt="" width="150" border="0" class="WADAResultThumb" style="margin-bottom: 30px;" /></a></div>
<div class="WADAResultInfoArea">
<div class="WADAResultTitle"><a href="products_Detail.php?ProductID=<?php echo(rawurlencode($row_WADAproducts['ProductID'])); ?>"><?php echo $row_WADAproducts["ProductName"]; ?></a></div>
<div class="WADAResultDescription"><?php echo $row_WADAproducts["ProductShortDesc"]; ?> <a href="products_Detail.php?ProductID=<?php echo(rawurlencode($row_WADAproducts['ProductID'])); ?>">More...</a></div>
<div class="WADAResultCommerceArea">
<div class="WADAResultCommerceButton">

<div class="WADAClearBoth"></div>
<div class="WADAResultPrice"><span class="WADAResultPrice1"><?php echo $row_WADAproducts["ProductPrice"]; ?></span></div>
<div class="WADAClearRight"></div>


<form name="TotalCatECART_1_ATC_<?php echo $row_WADAproducts['ProductID']; ?>" method="POST" action="<?php echo $_SERVER["PHP_SELF"]; ?><?php echo (isset($_SERVER["QUERY_STRING"]) && $_SERVER["QUERY_STRING"] != "")?"?".$_SERVER["QUERY_STRING"]:""; ?>">
<p>
<input type="hidden" name="TotalCatECART_1_ID_Add" value="<?php echo $row_WADAproducts['ProductID']; ?>" >
<input type="text" name="TotalCatECART_1_Quantity_Add" value="0" size="7" style="float:right;" >
</p>

<input type="image" src="WA_eCart/Images/Granite Pine/Btn3_EN_addtocart.gif" border="0" class="eC_ImageButton" value="Add to Cart" name="TotalCatECART_1_ATC" style="float:right; margin:5px 0px;">
</form>
</div>
</div>
<div class="WADARecordNavigationButtons"></div>
</div></td>
</tr>
<?php } while ($row_WADAproducts = mysql_fetch_assoc($WADAproducts)); ?>
</table>

<div class="WADAResultsNavigation">
<div class="WADAClearRight"></div>
<div class="WADAResultsBackTop"><a href="#top" title="Back to top"><img border="0" name="Top" id="Top" alt="Back to top" src="WA_DataAssist/images/Granite Pine/Refined_up.gif" /></a></div>
<div class="WADAResultsCountBottom">Records
<?php echo ($startRow_WADAproducts + 1) ?>
to
<?php echo min($startRow_WADAproducts + $maxRows_WADAproducts, $totalRows_WADAproducts) ?>
of
<?php echo $totalRows_WADAproducts ?>
</div>
<div class="WADAClearBoth" ></div>
</div>
</div>
<?php } // Show if recordset not empty ?>
<?php if ($totalRows_WADAproducts == 0) { // Show if recordset empty ?>
<div class="WADANoResults">
<div class="WADANoResultsMessage">No results for your search</div>
</div>
<?php } // Show if recordset empty ?>

</div>

<div >
<p>&nbsp;</p>
<p style="font-size: 8pt; line-height:8pt; font-style:italic;">*Note: All orders are shipped out the next day (except Sundays) from our facility as long as the item is in stock and the all funds have been received for the entire order. In most cases, funds are received immediately if payment is via credit card or paypal. </p>
<p style="font-size: 8pt; line-height:8pt; font-style:italic;">&nbsp;</p>
</div>
</div>


</div>
<!-- InstanceEndEditable -->
<div class="col1">
<div class="box1">


<div class="wrapper" style="border-bottom:#bea97c medium dotted; margin-bottom:25px;">



<div style="border-bottom:#bea97c medium dotted; margin-bottom:25px;"> <p style="font-size: 11pt; line-height: 12pt;"><strong>Not sure about feeding raw or concerned about</strong></p>
<h1 style="font-size:16pt; line-height:20pt; color:#635C4B;padding: 0px; margin:0px;">Salmonella and Parasites </h1>
<p >with feeding a raw meat,<br/>
watch this video for answers.
</p>
<p>
<div class="AJXLightboxIQdRdXD_center_wrapper" style="margin-bottom:15px;">
<!-- AJXFILE:../ajxlightbox_Video%20R%20Nav%20Salmonella.css -->
<div class="AJXLightboxIQdRdXD">
<div class="AJXLightboxIQdRdXDli">
<div class="AJXLightboxIQdRdXDawrapper"><a title="Raw Meat Diet for Dogs and Cats" href="http://www.youtube.com/watch?v=G3wLTlqnMMg&amp;ajximg=http://i1.ytimg.com/vi/G3wLTlqnMMg/0.jpg" class="AJXLightboxa"><img src="http://i1.ytimg.com/vi/G3wLTlqnMMg/1.jpg" alt="Raw Meat Diet for Dogs and Cats" height="" width="165"/></a></p></div>
</div>
</div>
</div>
</div>



<h1 style="font-size: 25pt; line-height: 25pt;">OUr Promise to You...</h1>
<p><strong>To do the PRODUCT RESEARCH<br />
for you! To only offer quality product in our store.</strong> <a href="Guidelines_and_standards.html"><br />
Read More&gt;</a></p>
<p>&nbsp;</p>
</div>



<div class="wrapper" style="margin-top: 0px;">


<h1 style="font-size: 25pt; line-height: 25pt;">Feline<br />
Health<br />
Articles</h1>
<ul class="list1" >
<li> <a href="Articles.html">Urination Outsite Box</a> </li>
<li> <a href="Articles.html">CRF and Insufficieny</a> </li>
<li> <a href="Articles.html"><strong>Constipation</strong></a><strong></strong></li>
<li> <a href="Poison_List.html"><strong>Feline Poison List</strong></a><strong></strong></li>
</ul>
</div>
</div>
<div class="box2 marg_top1"><div class="wrapper">
<h1 style="font-size: 25pt; line-height: 25pt;">Success Stories...</h1>
<p >read stories from other Feline Owners on how a Raw Diet improved their Feline Companions health and life. </p>
<form id="form_1" action="" style="width:180px;">
<div>
<div class="wrapper"><a href="Share_Your_Story_Entries.html" class="button" ><span><span>Read the Stories</span></span></a></div>
</div>
</form>

<h1 style="font-size: 18pt; line-height: 18pt;">&nbsp;</h1>
<h1 style="font-size: 18pt; line-height: 18pt; border-top:thin #FFF dotted ; padding-top: 15px;">Share your Story...</h1>
<p>of how a raw diet improved your felines life.</p>
<form id="form_1" action="" style="width:180px;">
<div>
<div class="wrapper" style="margin-bottom: 0px;"><a href="Share_Your_Story_Form.html" class="button" ><span><span>Tell Your Story</span></span></a></div>
</div>
</form>
</div></div>

<div class="box3 marg_top1"><div class="wrapper" style="margin: 315px 0px 25px 0px">

<p style="color:#555; font-size: 11px; line-height: 12px;" ><em>- As owner of The Total Cat Store I only recommend products of quality, that I have researched personally and use myself, if applicable. I've been a Go Pet Plan client for over 4 yrs and choose GPP, after reviewing many, for their policy on cost, pre-existing conditions, coverage and re-imbursement. </em><em><a href="https://account.gopetplan.com/partner/totalcatstore">READ MORE</a>.</em></p>
</div></div>


<div class="box3 marg_top1" style="background-image:none; height:205px; padding-left: 0px;"><a href="http://feline-nutrition.org"><img src="images/Ad_Side_feline_nutrition.jpg" width="200" height="200" alt="RawFedKitty" longdesc="http://www.feline-nutrition.org" /></a></div>



</div>
</div>
<!--content end-->

</div>
<div class="bot">

<!--footer -->
<div id="footer">

<div id="Nav_Header" style="margin-top: 15px; float: left;">
<h3><a href="index.php">Home / Product</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="FAQ_Raw_Diet.html">Raw Diet FAQ</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="Autoship_Program.html">Autoship Program</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="resources.html">Helpful Links</a><img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="About_Us.html">About Us</a> <img src="images/menu_line.png" alt="" width="20" height="20" class="nav_divider_spacing" /><a href="contactus.html">Contact Us</a></h3>
</div>


<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p align="center">The Total Cat Store &copy;2011 &nbsp;|&nbsp; <a href="privacypolicy.html">Privacy</a> and<a href="termsandcondtions.html"> Terms and contiions</a> policy &nbsp;|&nbsp; <a href="returnpolicy.html">Return &amp; Shipping policy</a></p>



</div>
<!--footer end--></div>

</div>
<script type="text/javascript"> Cufon.now(); </script>
<script type="text/javascript">
$(function(){
$("#faded").faded({
speed: 1200,
crossfade: true,
bigtarget: true,
autoplay: 4800,
autorestart: 1200,
autopagination: true
});
});
</script>
</body>
<!-- InstanceEnd --></html>
<?php
mysql_free_result($WADAproducts);
?>

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...