help about how to print content of the basket Programming Software Development by bhuwanrc …cout<<"caought:"; aFish=new AustralianBass(); basket.push_back(aFish); } else if(i==2) { cout…<<"caought:"; aFish=new ShortFinedEel(); basket.push_back(aFish); } else if (i==3) { cout…<<"caought:"; aFish=new EelTailedCatfish(); basket.push_back(aFish); } else if (i==4) { cout… shopping basket Programming Web Development by izagaren123 …set period of time. here is the code for the basket page. [CODE]<?php session_start(); ?> <!DOCTYPE…. Once you are satisifed with the items in your basket, please press "Next" at the bottom…; } if (isset($_SESSION['cart'])) #echo "item in basket"; { echo '<table border=1 cellspacing=0 width="… Shopping Basket Price not submitting Programming Web Development by simplypixie … the qty to the existing qty if (is_array($_SESSION['basket'])) { foreach ($_SESSION['basket'] as $array) { if ($array['item_id']==$item_id) {…array['item_url']=$item_url; //Add to the existing basket contents $_SESSION['basket'][]=$array; } } if (is_array($_SESSION['basket'])) { $total=0; $totalItems=0; … Ecommerce Basket object - do i need it?? Digital Media Digital Marketing by eramgarden … way, we save the items in a "Basket" object. Users can remove items from it…, add to it. This Basket object is NOT saved in the database. It…, when user clicks submit, we transfer the Basket object into Order object and we save that …Order Object. Basket object is like a dumb down version of… Re: Shopping Basket Price not submitting Programming Web Development by GliderPilot Yeah I've looked over the PHP code several times and nothing is jumping out at me as being wrong. Only suggestion I would have is to var_dump($_SESSION['basket']) as maybe something isn't getting set as you expected it to. Re: Shopping Basket Price not submitting Programming Web Development by simplypixie … jQuery. Basically whichever product I select to add to the basket, it seems to be going to the last form on… Re: Ecommerce Basket object - do i need it?? Digital Media Digital Marketing by ApparelJudy It is a general feature of ecommerce sites. Ecommerce basket should be the same to ecommerce shopping carts. London people like to call ecommerce basket. Americans call ecommerce shopping cart. Advice needed on Shopping Basket implementation Programming Web Development by ClaudeVernier … started to work on a new implementation of a shopping basket, some of it is not working as I would like… height and I can't find how. For the shopping basket, JQuery enables me to drag and drop the products on…, when I get to products in lower categories, the shopping basket stops reading the drops. If you I could get any… Paypal shopping basket link Programming Web Development by huwgomez … trying to set up a link to paypal's shopping basket feature from my listing page. I'm trying to get… the rows values and sends them through to the shopping basket. Here is the script for the page: <!DOCTYPE HTML… Website shopping basket security Community Center by Goldfish691 … asked to develop a commercial site that has a shopping basket and the ability for the customers to purchase MP3 files…. To start with I am going to integrate Paypals shopping basket into the site however, my question is how secure is… Shopping basket contents to paypal Programming Web Development by MDGM Hi all, I have a shopping basket feature on my website which saves the product's primary …'. Now in order to get each item from my shopping basket to paypal I need to write 2 hidden form fields… Shop Basket without using Database. Programming Web Development by rahulrulez …. I've to create one module, basically a "Shopping Basket" which will hold the information about items that to… store it in something like array or stack because Shopping basket is just a temporary thing. Can you help me with… Error on "basket" of an e-shop Programming Web Development by monicao …. The problem appears when I want to add in the basket the second product. Then I receive the following error : "… print basket to image Programming Web Development by paslanmaz hi, I have a question. How can I code the name, id, price and total amount of basket content as image? Cookie basket problem Digital Media UI / UX Design by Scruffstone ….cgi for my eCommerce site but with PayPal as the basket side of it. There's vast amounts of code that… shopping cart basket Programming Software Development by saitej_1 hi friends pls let me know how to add products to my basket which was in masterpage and how to do caluculations with them Create a temporary table for basket in MySQL Programming Web Development by Mohamed_26 Hello Everyone, I have to create a temporary table for basket. I have to include certain fields from different table. Now … how can i create a basket shop to online webstore Programming Web Development by mehran.abdi.9 hi i want know how can i creat a basket shop and how work it? help me Re: modified wingtip toys tutorial shopping basket type error (c# ). Programming Web Development by PsychicTide … the current cartItem [if there is one already in the basket of the same ID, else null] via comparing the itemIDs… Re: modified wingtip toys tutorial shopping basket type error (c# ). Programming Web Development by PsychicTide … any idea on how I can create a simple shopping basket through asp.net/c# I'm open for any idea… Re: help about how to print content of the basket Programming Software Development by ganbree Your printbasket function seems to be fine. This is not a solution but it would make it easier to read if you used indention to show scope. The problem does not appear to be in printbasket. Look at fish::printme. Are the different fish classes derived from the fish class? Calling printMe() from a Fish pointer will call the fish handler if no … Re: help about how to print content of the basket Programming Software Development by Salem Shame about the lack of indentation :icon_rolleyes: Re: Shopping Basket Price not submitting Programming Web Development by GliderPilot Are you including the dollar sign ($) in your price? If so make sure you escape it \$ or ASCII it Re: Shopping Basket Price not submitting Programming Web Development by simplypixie No, no dollar sign (i am not American so wouldn't be anyway :) ) or any others for that matter just (for example) 1.99 Re: Shopping Basket Price not submitting Programming Web Development by GliderPilot if you var_dump($unit_price) what does it give you? Re: Shopping Basket Price not submitting Programming Web Development by simplypixie If I var_dump, I get the price Re: Shopping Basket Price not submitting Programming Web Development by GliderPilot Your sprintf("%01.2f", $total) are you just trying to print out the total with two decimals? Re: Shopping Basket Price not submitting Programming Web Development by simplypixie Yes but the price is not even being set in the session (before it even gets to the returned output) which is why it really isn't making any sense to me. Re: Shopping Basket Price not submitting Programming Web Development by simplypixie OK I don't know what I have done but I did change the class name of the form and now amounts are being added. However they are strange amounts so I will now have to look into this new problem - oh well. Re: Ecommerce Basket object - do i need it?? Digital Media Digital Marketing by schizoman We certainly use shopping carts (baskets) at my job. As you point out, carts are malleable and transient, while orders are hard data. It only takes a couple of SQL statements and a foreign key to transform the former into part of the latter.