Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Echo from MySQL to PHP
Old 08-13-2004, 12:05 AM Echo from MySQL to PHP
jake5253's Avatar
Average Talker

Posts: 27
Location: Pennsylvania, USA
Trades: 0
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
jake5253 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-13-2004, 12:08 AM
jake5253's Avatar
Average Talker

Posts: 27
Location: Pennsylvania, USA
Trades: 0
oh wow...
I feel so retarded now... who ever would have thought to add another echo line? haha
Fixed:

PHP Code:
while ($row mysql_fetch_array($query)) { 
 echo 
"<p>",$row['sn']," (",$row['count']; 
 echo 
")"
jake5253 is offline
Reply With Quote
View Public Profile
 
Old 08-13-2004, 10:54 AM
Unknown.

Posts: 1,693
Trades: 0
Couldnt you have just added it to the end...

PHP Code:
while ($row mysql_fetch_array($query)) { 
echo 
"<p>",$row['sn']," (",$row['count'],")"
Just a suggestion

-James
Dark-Skys99 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Echo from MySQL to PHP
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.12145 seconds with 12 queries