How can display multiple values to single column?

How to Display multiple values stored in database one column with delimiter?

  • I am having multiple values in database column. How to display them as table? Here $ working as delimiter. machine_description = "CHUCK#8"$JOB DIAMETER#250 MM$JOB LENGTH#450 MM$ CONTROL#FANUC OTC" I want to display this as table: ______________________ |CHUCK | 8" | ______________________ |DIAMETER| 250 MM | _____________________ |LENGTH | 450 MM | ______________________ |CONTROL | FANUC OTC| pasting values like this because stack doesn't allow me put image here right now.

  • Answer:

    If you need HTML table, then you can use something like this: <?php $machine_description = 'CHUCK#8"$JOB DIAMETER#250 MM$JOB LENGTH#450 MM$ CONTROL#FANUC OTC'; $data = explode('$', $machine_description); echo '<table>'; foreach ($data as $row) { echo '<tr><td>' . str_replace('#', '</td><td>', $row) . '</td></tr>'; } echo '</table>'; That will give you table like: <table> <tr> <td>CHUCK</td> <td>8"</td> </tr> <tr> <td>JOB DIAMETER</td> <td>250 MM</td> </tr> <tr> <td>JOB LENGTH</td> <td>450 MM</td> </tr> <tr> <td> CONTROL</td> <td>FANUC OTC</td> </tr> </table>

Pyarey at Stack Overflow Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.