Jump to content

Why this code is not working in IE ?


Coldman

Recommended Posts

this code is working in all browsers but not with IE does any body has idea why ?

 

$size = count($_POST['Quantity']);

 

//echo $size;

$i = 0;

while ($i < $size) {

$cid= $_POST['Cartid'][$i];

$product= $_POST['ProductID'][$i];

$quantity= $_POST['Quantity'][$i];

$Price= $_POST['Price'][$i];

$TotalPrice= $_POST['TotalPrice'][$i];

 

 

$con = mysql_connect("localhost","root","");

if (!$con)

  {

die('Could not connect: ' . mysql_error());

  }

 

mysql_select_db("manvisdatabse", $con);

 

 

 

$query  = "UPDATE cart SET Quantity ='$quantity', TotalPrice=$Price*$quantity where ProductID='$product' ";

mysql_query($query);

 

if(!query)

 

echo "Query lesh";

 

++$i;

 

}

header("Location: add_to_cart.php");

exit;

Link to comment
Share on other sites

this code is working in all browsers but not with IE does any body has idea why ?

 

php executes on your server. It makes no difference what browser is used on your client computer.

 

What's wrong is your HTML code, probably that the form you use to submit the data is flawed.

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.