Jump to content

arrays in php


coder_mohnish

Recommended Posts

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
Share on other sites

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
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.