last post

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    last post

    is there any way to exclude whats posted in the admin forum from it? i've looked and it seems MySQL doesn't let you exclude things like fid ='1'

    #2
    you can exclude it by using NOT
    eg

    Code:
    SELECT * FROM forum WHERE NOT fid='1';
    Follow me @ksg91 | My Blog: http://ksg91.com | Nokia Blog: http://NokiaTips.in

    Comment


      #3
      or you can do it by
      SELECT * FROM forum WHERE f i d != ' 1 ' ;

      Comment


        #4
        Originally posted by ksg91 View Post
        you can exclude it by using NOT
        eg

        Code:
        SELECT * FROM forum WHERE NOT fid='1';
        thanks mate

        Comment


          #5
          these are set of commands which may come usefull to you when working with mysql..


          MySQL Commands
          Want something coded email me at sales@webnwaphost.com for a prices.




          Comment


            #6
            Originally posted by crazybrumi View Post
            these are set of commands which may come usefull to you when working with mysql..


            MySQL Commands

            bookmarked nice one

            Comment

            Working...
            X