Reputation: 3
I could not find a solution to this problem. I am having big problems I do not know solved I'll wait for solutions and thank you. Is the problem in the domain names?
<?php
session_start();
require_once("../Connections/Store.php");
if(isset($_GET['page'])){
$pages = array("products","cart");
if(in_array($_GET['page'],$pages)){
$page=$_GET['page'];
}else {
$page="products";
}
}else {
$page="products";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div id="container">
<div id="main"><?php require($page. ".php"); ?></div>
<div id="sidebar"></div>
<?php
if(isset($_SESSION['cart'])){
$sql .="SELECT * FROM products WHERE pro_id IN (";
foreach($_SESSION['cart'] as $id => $value){
$sql .=$id . ",";
}
$sql = substr($sql,0,-1). ") ORDER BY pro_id ASC";
$query=mysql_query($sql);
while($row=mysql_fetch_assoc($query)){
?>
<p><?php echo $row['pro_name'];?><?php echo $_SESSION['cart'][$row['pro_id']]
['quantity'];?></p>
<a href="index.php?page=cart">Go to Cart </a>
<?php
}
}else {
echo"Your Cart is empty. <br> please add some product";
}
?>
</div>
</body>
</html>
Upvotes: 0
Views: 591
Reputation: 30488
Your query is failing use mysql_error
for viewing the error
$query=mysql_query($sql) or die(mysql_error());
And remove .
from here
$sql .="SELECT * FROM products WHERE pro_id IN (";
^^
Note: Please, don't use mysql_*
functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO, or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial.
Upvotes: 2