By phpzag
via phpzag.com
Published: Oct 15 2012 / 02:28
Currently PHP has become the most popular programming language for web development. Millions of websites are developed using PHP. There are many popular website such as Facebook, Wikipedia and also CMS like WordPress, Joomla and Drupal which are built with the PHP language.
Comments
gusc replied ago:
All is good except the usage of isset ... it's always a good practice to predefine your variables, so if you set $var = ''; and do an isset() - it will return true, because "the variable IS set" to empty string. One thought though, is it faster to use $var == '' or strlen($var) == 0?
Voters For This Link (9)
Voters Against This Link (0)