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
https://forums.phpfreaks.com/topic/273252-db-array/
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
https://forums.phpfreaks.com/topic/273252-db-array/#findComment-1406253
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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