Author Topic: post removed  (Read 3846 times)

0 Members and 1 Guest are viewing this topic.

Offline wtfItscool

  • Pre-Newbie
  • Posts: 8
    • View Profile
post removed
« on: January 07, 2007, 08:22:32 PM »
post removed
« Last Edit: January 24, 2009, 07:09:04 PM by wtfItscool »

Offline Acidgod

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 2.421
  • It's me?
    • View Profile
    • Flash-Webdesign
Re: Show a List of Recently Created Categories/Subcategories?
« Reply #1 on: January 08, 2007, 06:50:34 PM »
you can use the cat_id for that...

you can use a query like this:
SELECT *
FROM `4images_categories`
ORDER BY `cat_id` DESC  LIMIT 0 , 10

then you become only the last 10 categories...

Good speed!