coder_mohnish Posted October 29, 2007 Share Posted October 29, 2007 I have a code as follows foreach($_SESSION["prids"] as $key=>$prd) { $res_prn=mysql_query("select prod_name from prod_det where prod_id=".$prd.""); $rcset_prn=mysql_fetch_array($res_prn); //echo $proid; echo '<br>'; echo $_SESSION['prids']; echo $rcset_prn['prod_name']; } foreach($_SESSION["counts"] as $cnt) { echo '<br>'; echo "X".$cnt; } As per the code i am using foreach loop to print the $_SESSION array values. Can any one tell me hoe to use a for loop in the above case so that i dont have to use two different loops using foreach Link to comment https://forums.phpfreaks.com/topic/75190-arrays-in-php/ Share on other sites More sharing options...
Orio Posted October 29, 2007 Share Posted October 29, 2007 The array $_SESSION['prids'] and the array $_SESSION['count'] are two different arrays. So in order to go over their values using a foreach, you will need one loop per array. So unless there's some connection between them, I don't understand how you want to display everything in one loop. Orio. Link to comment https://forums.phpfreaks.com/topic/75190-arrays-in-php/#findComment-380257 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.