Jump to content

PHP and HTML


farhath

Recommended Posts

imbed the code you need into a loop and wrap the html codes around the variable, for example, this prints out a table with 10 rows, each row being numbered:

 

[php:1:06ecf63455]

<table>

<?php

for($i=0;$i<10;$i++)

{

echo(\"<tr><td>$i</td></tr>\");

}

?>

</table>

[/php:1:06ecf63455]

 

i\'m guessing this code was placed in mysql because you want to format information from a database into a table?

Link to comment
https://forums.phpfreaks.com/topic/38-php-and-html/#findComment-95
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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