PHP-Nut Posted May 19, 2008 Share Posted May 19, 2008 ??? Im writing a shopping cart that uses Session variables, i have a form that displays the basket contents in a form so the user can update the item qtys. all was going fine until i tried to write the update script. Basically my idea was to read the qtys on the form and then update them to the newly submitted ones using foreach and the $_POST array.. but on submitting the form i get an error Warning: Invalid argument supplied for foreach() in c:\inetpub\wwwroot\kenb_rem\viewbasket.php on line 6 The Code is fairly Straight Forward.. here is the line with the error.. <?php if (isset($_POST['update'])) { foreach($_POST['qty'] as $key =>$val) { } } I have used the foreach with session arrays to build the shopping cart contents with no problems... Can somebody help..? Thanks Link to comment https://forums.phpfreaks.com/topic/106301-hoooray-for-arrays-or-not-in-this-case-help/ Share on other sites More sharing options...
kenrbnsn Posted May 19, 2008 Share Posted May 19, 2008 Please supply more information, such as what your form looks like. Ken Link to comment https://forums.phpfreaks.com/topic/106301-hoooray-for-arrays-or-not-in-this-case-help/#findComment-544755 Share on other sites More sharing options...
PHP-Nut Posted May 19, 2008 Author Share Posted May 19, 2008 the form is just 1 txt field id= qty which reads the qtys from the session varibles ,1 for each line of the basket, and the the button id = update . the form works pefectly in that i can echo the new qty using echo $_POST['qty']. i just cant get the foreach to read it? Link to comment https://forums.phpfreaks.com/topic/106301-hoooray-for-arrays-or-not-in-this-case-help/#findComment-544766 Share on other sites More sharing options...
LemonInflux Posted May 19, 2008 Share Posted May 19, 2008 if it's just one value, then it doesn't need an array...? if $_POST['qty'] is from a text field, then you don't need any sort of foreach loop. Link to comment https://forums.phpfreaks.com/topic/106301-hoooray-for-arrays-or-not-in-this-case-help/#findComment-544768 Share on other sites More sharing options...
PHP-Nut Posted May 19, 2008 Author Share Posted May 19, 2008 if it's just one value, then it doesn't need an array...? if $_POST['qty'] is from a text field, then you don't need any sort of foreach loop. $_POST['qty'] is an array for example if the form repeats and there is more than 1 instance of $_POST['qty'] as would be the case if more than 1 item was placed into the shopping basket.. Link to comment https://forums.phpfreaks.com/topic/106301-hoooray-for-arrays-or-not-in-this-case-help/#findComment-544772 Share on other sites More sharing options...
BlueSkyIS Posted May 19, 2008 Share Posted May 19, 2008 in this case, $_POST['qty'] is not an array. it would be an array if you have multiple form fields called qty[] $_POST is an array, and you want the value of the 'qty' key. Link to comment https://forums.phpfreaks.com/topic/106301-hoooray-for-arrays-or-not-in-this-case-help/#findComment-544774 Share on other sites More sharing options...
PHP-Nut Posted May 19, 2008 Author Share Posted May 19, 2008 [sOLVED] in order to make this function correctly i had to use the products id field as a field in the qty textfield on the form.. ie product id = 102 $_SESSION['cart'] [prod_ID] = 102 // Session varible of Cart for given product when building the form i just had to make sure i used the prod_ID field as a key qty[102] etc.. so that when it came to use foreach it knew it was now an array.. Thanks Paul. Link to comment https://forums.phpfreaks.com/topic/106301-hoooray-for-arrays-or-not-in-this-case-help/#findComment-544843 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.