Month / September 2011

MySQL provides a very simple method to select rows in random order. It uses the ORDER BY RAND()statement. If you will be used theORDER BY RAND() statement, MySQL will create a temporary table with all results, then will be assigned a random index to each row and finally will return the random rows! This makes the […]

Read More

When you would like to show a page only for a specified user or you wish to create a maintenance page, you may use this simple script:

Read More