Hallo erstmal.
Ich hab 'ne Frage, und zwar hab ich ein SQL-Query, welches aus unerfindlichen Gründen nicht/anders geordnet wird als ich das will.
Offline (PHP 5.2.1, MYSQL 5.1.37) funktionierts, online (PHP - null plan, MYSQL 5.0.51b) wird das Ganze gar nicht geordnet.
Das query:
SELECT post.*, usr.name as poster, cat.id as cat_id, cat.name as category, (SELECT count(*) FROM comments
comm WHERE comm.post=post.id) AS commentCount FROM posts
post
JOIN categories
cat ON post.category=cat.id OR post.category=0
JOIN users
usr ON post.creator=usr.id
WHERE cat.id=$ID GROUP BY post.id ORDER BY post.id DESC LIMIT $POSTSPERPAGE1,$POSTPERPAGE2