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
https://forums.phpfreaks.com/topic/72969-why-this-code-is-not-working-in-ie/
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.

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.