dannybrazil Posted January 16, 2013 Share Posted January 16, 2013 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? Quote Link to comment Share on other sites More sharing options...
Jessica Posted January 16, 2013 Share Posted January 16, 2013 Google "data normalization". You need to store your data differently, as you've discovered the way you're doing it causes problems as soon as you want to actually use the data. Quote Link to comment Share on other sites More sharing options...
Barand Posted January 16, 2013 Share Posted January 16, 2013 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>"; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.