PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php $db = mysql_connect("localhost",$username,$password);
mysql_select_db($database,$db);
$query2 = "SELECT * FROM postnew ORDER BY id ASC";
$result2 = mysql_query($query2);
while ($row = mysql_fetch_array($result2)) {
echo '[b]Nick:[/b] '.$row['nick'].' [b]Posted:[/b] '.$row['count'];
} mysql_free_result($result2); ?>
So it goes through and gets all the nicknames and puts them along with their count, yet they are printed right next to each other i want them to print each nickname on a line of a textarea