How to create an array from database?

Posted by Sofyan on Stack Overflow See other posts from Stack Overflow or by Sofyan
Published on 2010-04-30T17:57:53Z Indexed on 2010/04/30 18:27 UTC
Read the original article Hit count: 262

Filed under:
|
|

Hi,

Please help me to create an array from a field of my DB. That field has records separated by comma. Below is the illustration:

ID | article_title_fld         | article_tags_fld                     |
----------------------------------------------------------------------
1  | Learn PHP                 | PHP, coding, scripting               |
3  | Javascript Tutorial       | Javascript, scripting, tutorial      |
4  | Styling with CSS          | CSS, tutorial, web design            |

I want to collect all records in the article_tags_fld then put it into 1 array. Perhaps I named it $array1, and the print out as below:

Array
(
[0] => PHP
[1] => coding
[2] => scripting
[3] => Javascript
[4] => scripting
[5] => tutorial
[6] => CSS
[7] => tutorial
[8] => web design
)

© Stack Overflow or respective owner

Related posts about php

Related posts about array