Jump to content

get all value from column box_no from all records?


coder9

Recommended Posts

Hi again.

 

this time i have a table again.

 

table name: jtable

columns: id and box_no

 

now what i want is to get all value of box_no column from all records and store that into array.

 

let say my array name is $tmp_array[];

 

You guys really helped me a lot. hoping that you will help me again.

 

Thank you in advance again.

 

 

 

Link to comment
Share on other sites

You can do that by simply doing a standard MySQL query:

 

$sql = "SELECT box_no FROM jtable";
$result = mysql_query($sql);

 

If you wanted a simple array with these values, you could use a while statement:

 

while($row = mysql_fetch_assoc($result)){
    $tmp_array[] = $row['box_no'];
}

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.