zero-perfoliate
zero-perfoliate

Author Topic: Help me please with my PHP Shpooing Cart code  (Read 212 times)

Offline Caligua

  • New PHP Members
  • Posts: 1
  • Karma: +0/-0
Help me please with my PHP Shpooing Cart code
« on: May 09, 2010, 02:18:59 PM »
Hello world!

Hi i'm new to to programming and php at that i have until tomorrow to get my site's shopping cart working.

so far i have spend days trying to get the code right and having not done much programming b4, it just feels like i'm chassing my tail, oh i dont have a tail, so you can see, i'm not chassing anything or getting anywhere.

please i would be greatful if someone coudl take a look at my code and suggest ways f rme to make it work.

below are the fours pages that i think would be helpful to look at to see what i'm doing work.

the first code snippet is that for the CART;

<?php
session_start();

function writeShoppingCart() {
   $cart = $_SESSION['cart'];
   if (!$cart) {
      return '<p>You have no items in your shopping cart</p>';
   } else {
      // Parse the cart session variable
      $items = explode(',',$cart);
      $s = (count($items) > 1) ? 's':'';
      return '<p>You have <a href="cart.php">'.count($items).' item'.$s.' in your shopping cart[/url]</p>';
   }
}

?>

<!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">
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type" />

<link rel="stylesheet" type="text/css" href="sofas.css" />
<link rel="SHORTCUT ICON" href="images/BS.jpeg" />
<title>Belvedere Sofas</title>
</head>
<body>

   <div id="main">

      <img src ="images/topbanner.jpg" alt = "Belvedere Sofas Logo"/>

         <div id="left">
<a href="main.html" accesskey = "m"><img src ="images/home.gif" alt = "home"/>[/url]

<a href="product.html" accesskey = "n"><img src ="images/products.gif" alt = "Products"/>[/url]

<a href="discounts.html" accesskey = "d"><img src ="images/discounts.gif" alt = "Discounts"/>[/url]

<a href="customer.html" accesskey = "c"><img src ="images/details.gif" alt = "Customer Details"/>[/url]

<a href="verification.html" accesskey = "v"><img src ="images/confirm.gif" alt = "Verification"/>[/url]</div>

            <div id="centreproduct1">

<h2>Your Basket</h2>

echo writeShoppingCart();

</div>




   
               <div id="right"><img style="border:0;width:150px;height:100px" src ="images/phone.jpg" alt = "24 Hour Customer Service"/><a>For 24 hour Customer Service Please Phone 0870 567 789[/url]</div>

                  <img src ="images/bottombanner.jpg" alt = "grey bottom"/>
   </div>
</body>
</html>

 

zero-perfoliate