PhpTips.im - Everything about php - Download CMS, find tips and tricks, code snippetz, classes and more and more...
Bookmark this page !
   

Articles

    Home » Articles » Php/mysql tips
Browsing Php/mysql tips RSS RSS

   Pages :   0     1  
PHP Mysql tips
Published on : 25.04.2010 Category : Php/mysql tips Viewed : 27 times.
Word searching 1. [code]SELECT * FROM table WHERE MATCH (`field`) AGAINST ('Keyword')[/code] (Fastest) 2.[code]SELECT * FROM table WHERE MATCH (`field`) AGAINST ('+Keyword' IN BOOLEAN MODE)[/code] (Fast) 3.[code]SELECT * FROM table WHERE RLIKE '(^| +)Keyword($| +)'[/code] OR [code]SELECT * FROM table WHERERLIKE '([[:space:]]|[[:<:]])Keyword([[:space:]]|[[:>:]])'[/code] (Slow) Contains searchi...
Read More »

 

 Members
Log In !
Email Address :

Password :


Change my passowrd !
Sign Up !
We have : 3 members.
Latest member : albans
 
 Last Posts
 
 Advertising
 
©PhpTips.im 2010
Powered by PikaCMS.
Quick Links :
Home | Browse all articles | Downloads | Terms of Use
RSS RSS 2.0 : Articles | Downloads ATOM : Articles | Downloads