Jump to content

php/mysql coding help needed


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

Link to comment
https://forums.phpfreaks.com/topic/279239-phpmysql-coding-help-needed/
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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.