Jump to content

error inserting data from product table into cart table


vinpkl

Recommended Posts

hi all

 

i m inserting data from my product table into cart table and getting this error

 

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in E:\xampp\htdocs\vineet\shopping_cart.php on line 13

 

This is my complete code

<?php
require_once("config.php");
$_SESSION['product_id']=$_REQUEST['product_id'];
$_SESSION['product_id']=$_REQUEST['product_id'];
$id=$_SESSION['product_id'];
//echo test;
//exit;
$qry="select product_id,image,product_name,price,shipping_cost from product_table where product_id=". $_SESSION['product_id'];
//echo $qry;
//exit;
$result=mysql_query($qry);
    $row=mysql_fetch_array($result);
$qry="insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values($id,$row['image'],$row['product_name'],1,$row['price'],$row['shipping_cost'],$row['price']+$row['shipping_cost'])";

echo $qry;
exit;
mysql_query($qry);

?>

 

This is line no.13

$qry="insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values($id,$row['image'],$row['product_name'],1,$row['price'],$row['shipping_cost'],$row['price']+$row['shipping_cost'])";

 

what is causing error in my code.

 

vineet

Link to comment
Share on other sites

try ...

 

row13

values(".$id.",".$row['image']."," .......

 

hi

 

when i used this code

 

<?php
$qry="insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values(".$id.",".$row['image'].",".$row['product_name'].",".1.",".$row['price'].",".$row['shipping_cost'].",".$row['price']."+".$row['shipping_cost'].")";
?>

then i received

 

Parse error: syntax error, unexpected T_DNUMBER in E:\xampp\htdocs\vineet\shopping_cart.php on line 13.

 

also in concatination of ".1." one dot is red and one is blue

 

vineet

 

 

Link to comment
Share on other sites

use single quotes for values


values('$id','$row[image]','$row[product_name]',1,'$row[price]'

 

hi zenag

 

when i used this code

 

<?php
$qry="insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values('$id','$row[image]','$row[product_name]',1,'$row[price]','$row[shipping_cost]','$row[price]'+'$row[shipping_cost]')";
?>

 

then i received this error

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in E:\xampp\htdocs\vineet\shopping_cart.php on line 12
insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values('','','',1,'','',''+'')

Link to comment
Share on other sites

you have to remember to enQuote your string/charactor values with quotes and leave you numeric values open

 

<?php
$qry="insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values(".$id.",'".$row['image']."','".$row['product_name']."',1,".$row['price'].",".$row['shipping_cost'].",".$row['price']."+".$row['shipping_cost'].")";
?>

 

i think thats it im not sure of your db structure though also if your hardcoding your quantity value don't quote it out

Link to comment
Share on other sites

you have to remember to enQuote your string/charactor values with quotes and leave you numeric values open

 

<?php
$qry="insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values(".$id.",'".$row['image']."','".$row['product_name']."',1,".$row['price'].",".$row['shipping_cost'].",".$row['price']."+".$row['shipping_cost'].")";
?>

 

i think thats it im not sure of your db structure though also if your hardcoding your quantity value don't quote it out

 

Hi n3ightjay

 

i used it and received this

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in E:\xampp\htdocs\vineet\shopping_cart.php on line 12
insert into cart_table(product_id,image,product_name,quantity,price,shipping_cost,total_cost) values(,'','',1,,,+)

 

this is line 12

$row=mysql_fetch_array($result);

Link to comment
Share on other sites

okay what are the data types of

 

cart_table( product_id

                image

                product_name

                quantity

                price

                shipping_cost

                total_cost

 

hi

 

here is the datatypes in cart table

 

cart_id = int(10) autoincrement

product_id=int(20)

image = varchar(40)

product_name = varchar(40)

price = float(9,2)

quantity = int(10)

shipping_cost = float(9,2)

total_cost = float(9,2)

 

vineet

 

Link to comment
Share on other sites

Try this please........

 

<?php session_start();

   require_once("config.php"); // if the session_start() in here dont use it, use it on it own each page...
   
   $_SESSION['product_id']=$_GET['product_id']; // use get or post only request no good get from url or post from form.
   
   $id=$_SESSION['product_id'];
  
   $sql="SELECT `product_id`,`image`,`product_name`,`price`,`shipping_cost` FROM `product_table` WHERE `product_id`='$id'";
   $result=mysql_query($qry)or die (mysql_error()); //add the error function.
   
   while(mysql_fetch_assoc($result)){
   
   $qry="INSERT INTO `cart_table`(`product_id`,`image`,`product_name`,`quantity`,`price`,`shipping_cost`,`total_cost`) 
   VALUES('$id','".$row['image']."','".$row['product_name']."',1,'".$row['price']."','".$row['shipping_cost']."'
   ,'".$row['price']+$row['shipping_cost']."')";
  $result2=mysql_query($qry)or die(mysql_error());//add error function
   
   }
?>

Link to comment
Share on other sites

A pro's way......

 

<?php session_start();

   require_once("config.php"); // the session_start(0 in here dont use it on it own each page...
   
   $_SESSION['product_id']=$_GET['product_id']; // use get or post only request no good
   
   $id=$_SESSION['product_id'];
  
   $sql="SELECT `product_id`,`image`,`product_name`,`price`,`shipping_cost` FROM `product_table` WHERE `product_id`='$id'";
   $result=mysql_query($qry)or die (mysql_error()); //add the error function.
   
   while(mysql_fetch_assoc($result)){
   	
   	
   $image=$row['image'];	
   $product_name=$row['product_name'];
   $price=$row['price'];
   $shipping_cost=$row['shipping_cost'];
   $price=$row['price']+$row['shipping_cost'];
   
      	
   $image=mysql_real-escape_string($_POST['image']);	
   $product_name=mysql_real_escape_string($_POST['product_name']);
   $price=mysql_real_escape_string($_POST['price']);
   $shipping_cost=mysql_real_escape_string($_POST['shipping_cost']);
   $price=mysql_real_escape-string($row['price']+$row['shipping_cost']);
   $price=$_POST['price'];
   
   $qry="INSERT INTO `cart_table`(`product_id`,`image`,`product_name`,`quantity`,`price`,`shipping_cost`,`total_cost`) 
   VALUES('$id','$image,'$product_name',1,'$price','$shipping_cost'
   ,'$price)";
  $result2=mysql_query($qry)or die(mysql_error());
   
   }
?>

Link to comment
Share on other sites

Try this please........

 

<?php session_start();

   require_once("config.php"); // if the session_start() in here dont use it, use it on it own each page...
   
   $_SESSION['product_id']=$_GET['product_id']; // use get or post only request no good get from url or post from form.
   
   $id=$_SESSION['product_id'];
  
   $sql="SELECT `product_id`,`image`,`product_name`,`price`,`shipping_cost` FROM `product_table` WHERE `product_id`='$id'";
   $result=mysql_query($qry)or die (mysql_error()); //add the error function.
   
   while(mysql_fetch_assoc($result)){
   
   $qry="INSERT INTO `cart_table`(`product_id`,`image`,`product_name`,`quantity`,`price`,`shipping_cost`,`total_cost`) 
   VALUES('$id','".$row['image']."','".$row['product_name']."',1,'".$row['price']."','".$row['shipping_cost']."'
   ,'".$row['price']+$row['shipping_cost']."')";
  $result2=mysql_query($qry)or die(mysql_error());//add error function
   
   }
?>

 

Hi redarrow

 

thanks for the reply. it worked with no error.

 

But gives the result as "query was empty".

 

what does this means

 

vineet

Link to comment
Share on other sites

did all the info get entred into the database mate....

 

cheek the id ok

 

hi redarrow

 

nothing got inserted into the cart table.

 

also tell where we have writen $sql should it be $qry=

$sql="SELECT `product_id`,`image`,`product_name`,`price`,`shipping_cost` FROM `product_table` WHERE `product_id`='$id'";

because in the bottom we are writing $qry=.

 

also this is the code i m writing on my add to cart button.

<?php 
echo "<a href=shopping_cart.php?id=" . $row['product_id'] . ">" ."<img src='images/add_cart.gif' border=0 />" . "</a>" . "</td>";

?>

 

vineet

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.