Jump to content

php/mysql coding help needed


Meadows
Go to solution Solved by Meadows,

Recommended Posts

Hi All,

 

I'm creating a shopping cart from following a tutorial online from TheTutSpace: http://www.youtube.com/watch?v=AKSkvZHJIEw&list=PLBA98B91CBF08F3A2

 

I have gotten up to the page where the cart should be displaying the products that have been added to the cart, and "Go To Cart" has been clicked. The page loads up correctly, however doesn't display any of the products that have been added to the cart. I know its storing them correctly as they are visible in the sidebar, they just aren't echoing out properly it seems.

I have also ran var_dump on $sql and $query, both returning the results that are expected of them.

The cart connects to the DB via a require_once which is located on my index.php so theres no issues there.

 

 

I have attached the cart.php page (which seems to be the only issue)

If you require more information, please do ask and i'll provide as  much as i can!

 

The section i THINK is the issue is:

 

if(!empty($query)){
while($row = mysql_fetch_array($query)){
$subtotal = $_SESSION['cart'][$row['SKU']]['quantity']*$row['price'];
$total_price += $subtotal;
?>


<tr>
<td><?php echo $row['name']; ?></td>
<td><input type="text" name="quantity-<?php echo $row['SKU']; ?>" size="5" value="<?php echo $_SESSION['cart'][$row['SKU']]['quantity']; ?>" /></td>
<td><?php echo "£" . $row['price']; ?></td>
<td><?php echo "£" . $_SESSION['cart'][$row['SKU']]['quantity']*$row['price']; ?></td>
</tr>
<?php
} 
}else {
echo "<i>No Items founds to display!</i> ";
}
?>

 

I am new to PHP as you may have guessed, so please be kind :)

cart.php

Edited by Meadows
Link to comment
Share on other sites

Then fix it. You are either referencing a non-existent column or you have a string value in your query containing "test1" that is not inside quotes.

 

We haven't even seen the query, let alone your table structures, so your pretty much on your own, unless we have a psychic in or midst.

Link to comment
Share on other sites

  • Solution

Hi there,

 

I've fixed the issue, it seemed that the variable $sql query was incorrect as the $id is strings and not numbers.

 

Fixed with:

 

foreach ($_SESSION['cart'] as $id => $value) {
$sql .="'" . mysql_real_escape_string($id) . "',";
}
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.