PHP/MySQL query ?

Out of context: Reply #2

  • Started
  • Last post
  • 10 Responses
  • ********
    0

    Very basically, I would set up the fields like isFlash, isStatic, etc, and populate those with true and false for each record.
    Retrieve with like...
    eg for just static projects...
    SELECT * FROM tablename WHERE isStatic='true'
    or for multiple...
    SELECT * FROM tablename WHERE isFlash='true' AND isStatic='true'.

    Doing something similar at the moment..

View thread