Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

programmershelp
finance products
gambling sites

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


split text up into different rows and insert into an html table

split text up into different rows and insert into an html table

<?php
$text = <<<EOD
This is some
sample text,
we want to make
appear in multiple
rows in a table
EOD;

$lines = explode("\n", $text);

echo "<table>";

foreach ($lines as $line)
{
echo "<tr><td>$line</td></tr>";
}

echo "</table>";
?>