How to Overcome Resistance

No matter what goal you want to achieve in life, if it is worthwhile, then you are bound to encounter resistance. This if true for anything, whether it is business, the military, or science. The reason for this is because you will have to struggle for anything that is worthwhile in life. Think about it. How much did Michael Jordan have to struggle before he became champion, or one of the greatest basketball players in history? How much did Albert Einstein have to struggle in order to create his theories of Relativity,… Read More

PHP Strings

This tutorial shows how to handle strings in PHP, different output methods, functions and the significance of using each of them.  A string can be literally expressed in the following ways in PHP 1. Single Quoted 2. Double Quoted 3. HEREDOC 4. NOWDOC (from ver. PHP 5.3.0) Different methods used to handle strings are: 1. Print 2. Echo 3. Sprintf 4. Print_r 5. Var_dump Single Quoted String: The simplest way to specify a string is to enclose it in single quotes (the character ‘). To specify a single quote in… Read More