sorry but your explanation is a little vague.
i'm assuming you have a question with several bullet points in your db, and you want to seperate the bullet points when you echo out the data??? If this is correct then try this:
when inputting your question to the database, where you want the bullet point to begin and end, do something like the following:
question 1: have i got this right?$@1#@2#@3#%
let me explain my thinking:
$ = start of list
@ = beginning of bullet point
= end of bullet point
% = end of list
then when taking the data from the database do something like:
$str_Question = your database data
$str_Question = str_replace ("$", "<ul>", $str_Question);
$str_Question = str_replace ("@", "<li>", $str_Question);
$str_Question = str_replace ("%", "</li>", $str_Question);
$str_Question = str_replace ("$", "</ul>", $str_Question);
echo $str_Question;
and you should hopefully have a correctly formatted list in HTML.
hope i've been of help.
cheers.