I have Value in table like abc1, abc2, abc3... abcN, I want to retrieve this value as a unordered list,
I m not a expert so please explain me if possible, how i can get it in unordered list.
I want to retrieve data from database table
I have no code, But I want to do it like as i asked, If any one can help with it, I just need code for it, i have db connection..etc, I need help how i can get it this way (unordered list) from database.
Thanks,
There are two things that you have to do.
For that you can use, eg. PDO library.
To achieve it you need only one function, explode().
$array = explode(', ', $commaSeparatedData);