Jump to content

Ordered list from a single cell from MySQL


AlenD

Recommended Posts

Hello, I'm wondering if there is a way to display text content in a single cell in mySQL in an ordered list.

 

For instance, I have a cell named foodname, servings, ingredients under the table recipes.

 

inside ingredients I'll put a lot of items.. can I echo them automatically in an ordered list? :)

Do you mean you have several items in the `ingredients` field, and want to do a list from there? is that a text field with a bunch of items? like:

tomatoes, carrots, salt, rice, peas... (Are they comma separated?)

 

if they are (comma separated), all you need to do is explode that particular field and then create your list from the resulting array, or just replace the commas with a <br />:

 

something like: (assuming $result is the var name to fetch items from database)

 

$list = explode(",",$result['ingredients']);
foreach($list as $ingredient){
    echo $ingredient.'<br />';
}

 

or even just:

echo str_replace(",","<br />",$result['ingredients']);

 

Hope this helps

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.