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
Related Q & A:
- How can I retrieve the object properties values from the database?Best solution by Stack Overflow
- How to display Android database data in a ListView?Best solution by Stack Overflow
- How to store multiple Images in database?Best solution by Stack Overflow
- How to display HTML data from database?Best solution by Stack Overflow
- How to Display an Image in PDF, which is retrieved from MySql Database :JSP and iText?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.