What can i add in constructors in PHP?

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

Was this solution helpful to you?

Related Q & A:

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.