What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Whats wrong with this php code?

Whats wrong with this php code?
Author: Message:
win_crook
Junior Member
**


Posts: 63
Reputation: 2
31 / Male / Flag
Joined: Apr 2007
RE: Whats wrong with this php code?
code:
$query_tags = mysql_query("SELECT COUNT(id) AS count_id, name FROM pp_tags GROUP BY name ORDER BY count_id DESC LIMIT 0,50");


That should work for the query ;)

Also that array copying code doesn't look right either like saralk was saying.

So try this:

code:
$i = 0;
while ($row_tag = mysql_fetch_array($query_tags)) {
$tags[$i] = $row_tag;
$i++;
}


You need to overwrite your while loop with that second piece of code.
Good Luck (Y)
01-02-2008 08:21 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Whats wrong with this php code? - by Quantum on 01-02-2008 at 06:34 PM
RE: Whats wrong with this php code? - by saralk on 01-02-2008 at 06:46 PM
RE: Whats wrong with this php code? - by Quantum on 01-02-2008 at 06:50 PM
RE: Whats wrong with this php code? - by MeEtc on 01-02-2008 at 08:09 PM
RE: Whats wrong with this php code? - by win_crook on 01-02-2008 at 08:21 PM
RE: Whats wrong with this php code? - by Quantum on 01-02-2008 at 09:11 PM
RE: Whats wrong with this php code? - by win_crook on 01-02-2008 at 09:52 PM
RE: Whats wrong with this php code? - by ShawnZ on 01-02-2008 at 10:40 PM
RE: Whats wrong with this php code? - by Quantum on 01-02-2008 at 11:36 PM
RE: RE: Whats wrong with this php code? - by andrewdodd13 on 01-03-2008 at 12:47 PM
RE: Whats wrong with this php code? - by Ezra on 01-02-2008 at 11:41 PM
RE: Whats wrong with this php code? - by -dt- on 01-03-2008 at 01:37 AM
RE: Whats wrong with this php code? - by Spunky on 01-03-2008 at 03:37 PM
RE: Whats wrong with this php code? - by ShawnZ on 01-03-2008 at 05:26 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On