Tag Archives: web development

5 tips to prevent PHP running out

Apr 12, 2014

Tip 1 (Knowing what parts of your script is using the most memory) If you’re looking to find out where your script is running out..

Read more

What is difference between assigning a variable

Apr 07, 2014

Difference between assigning a variable to NULL and unset. <?php $var = NULL; ?> A variable is considered to be NULL if It has been..

Read more

Difference between MySql drop table, truncate table,

Apr 07, 2014

DROP command is used for deleting the table and its structure from the data base.Use this command when you don’t need that table any more…

Read more

Full-text search in MySQL

Mar 18, 2014

Normally, most of us use “SELECT * FROM table WHERE field1 LIKE ‘%$keyword%’” OR field2 LIKE ‘%$keyword%‘ ..etc” to search our table and get results…

Read more

How to remove meta tag “generator” in

Mar 18, 2014

Hi all today we are going to see is “How to remove meta tag “generator” in Joomla 1.5” hope you all like the post On..

Read more

Javascript random integer between two numbers

Mar 17, 2014

A very simple and useful method to find a random integer between two numbers.  Found this simple javascript function to calculate random integer between two..

Read more