Ok to make it simpler for me, prob hard fr you, or easy, i have thisscript...
<?php
include('mysite/config.php');
//connects to the database
$c=mysql_connect("localhost","$dbuser","$dbpass");
//selects database
mysql_select_db($dbname);
//selects the data from database and lists the data
$todo='SELECT * FROM tagboard
order by date desc';
$solution=mysql_query($todo);
while ($place = mysql_fetch_array($solution))
{
$id=$place["id"];
$url=$place["url"];
$name=$place["name"];
$comments=$place["comments"];
//tells how the entries will be displayed on the page
echo"<table><tr><td>Posted by <a HREF=$url>$name</a> <br> $comments<br><hr></td></tr></table>";
}?>
Niow thats my lil output for my tg-board, i want the word war to go aroudnd the '$comments' but everytime i do, it, it fails. Can you stil help me? Its the echo, bit i tried to edit it, thats wut is outputted. (you already know, cuz ur a brain box!)