Jump to content

DB array


dannybrazil

Recommended Posts

Hello

 

I have a DB table which contains a col with information [code_of_product - quantity]:

 

Example:

12345 - 12 , 6789 - 8 , 54321 - 3.

 

Now as they are all in ONE CELL I wanted to know if there is a way to SEPARATE them according to the "," and "-"

 

Like this:

 

Product 12345 - Quantity 12

(<br>)

Product 6789 - Quantity 8

.

.

.

etc

 

any help?

Link to comment
Share on other sites

I totally agree with Jessica about the normalisation. This is not the way you should be storing your data.

 

But you will need to know how to extract the data in order to create a properly normalised table, so

 

$col_data = "12345 - 12 , 6789 - 8 , 54321 - 3";

$items = explode(' , ', $col_data);

foreach ($items as $item) {
   list($product, $qty) = explode(' - ', $item);
   echo "Product $product - Quantity $qty<br>";
}

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.