How can I add a row after every third column in mysql / php?
-
Hello I have one column table but I want objects in three rows like: Title1 Title2 Title3 Title4 Title5 Title6 How I can do this from this code? : <table width="100%" border="0"> <?php for($i=0;$i<$tr;$i++) { ?> <tr> <?php for($ci=0;$ci<$c;$ci++) { list($id, $title, $detail) = each($a_data); ?> <td> <?php echo $title->title ; echo '<br/>'; echo $title->detail; ?> </td> <?php } ?> </tr> <?php } ?> </table> Thank you
-
Answer:
We don't know what data is in which variable (there's no code reading the data from the database), but echo '<table><tr>', echo '<td>', in a for loop of 1 to 3 read the data, echo the title.'</td><td>, echo '</td></tr>' and keep going until you run out of data, then echo '</tr></table>'.
Victor at Yahoo! Answers Visit the source
Related Q & A:
- How can I add a slideshow to my site?Best solution by webstarts.com
- How can I add a picture in my Signature for an outgoing mail?Best solution by Yahoo! Answers
- How can i add a sound to alert me of my incoming emails?Best solution by Yahoo! Answers
- How can I add a clickable link to a question or answer on yahoo?Best solution by Yahoo! Answers
- How can I add a picture to a video?Best solution by Answerbag.com
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.