Coldman Posted October 12, 2007 Share Posted October 12, 2007 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 More sharing options...
Coldman Posted October 13, 2007 Author Share Posted October 13, 2007 Any Idea please Link to comment https://forums.phpfreaks.com/topic/72969-why-this-code-is-not-working-in-ie/#findComment-368472 Share on other sites More sharing options...
AndyB Posted October 13, 2007 Share Posted October 13, 2007 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 https://forums.phpfreaks.com/topic/72969-why-this-code-is-not-working-in-ie/#findComment-368504 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.