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? :)

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.