Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: nitro2005
  • Order by date
  1. nitro2005

    get last records details with a subselect?

    ahh :)
  2. nitro2005

    "dumping" database from my comp to server? do i need inet connection?

    yes you can do that via mostly any mysql tool like phpMyAdmin, MySQLFront, etc. the preffered tool is MySQL's mysqldump tool running from the command line.
  3. nitro2005

    get last records details with a subselect?

    why so difficult query? SELECT * FROM kdn_message ORDER BY updated DESC LIMIT 0,1 this should return the last one record from kdn_message by date (updated). if you want to get the last record from specific ticketid: SELECT * FROM kdn_message WHERE ticketid=1234 ORDER BY updated DESC LIMIT 0,1...
  4. nitro2005

    is_dir problem...

    check what is the current directory when you're trying to use is_dir(). try to add chdir('test'); after opendir

Part and Inventory Search

Back
Top