Posts: 27
Location: Pennsylvania, USA
|
Guess Who's back with another fun question?! haha.
OK, I got a php page that i can get to extract data from a MySql database, but i want it to display the data as: "ScreenName (# of views)" (without the quotes, but USING the ( and ) ). I apparently am mental and cant figure out how to do this properly... I got it so now it prints as "ScreenName : number" but thats annoying that way, and its no fun to not bother you with yet another question.
code line(s):
PHP Code:
while ($row = mysql_fetch_array($query)) {
echo "<p>",$row['sn']," : ",$row['count'];
Thanks
~Jake
|