Related Articles

PHP Programming (NEW)
PHP – elseif Statements
elseif statements allow you to check to see if any of a number of conditions are true before failing out to the else in an if statement.

*NEW
PHP – Test Transformation (strtolower, strtoupper, ucfirst, ucwords
Text transformation in PHP is useful not just for esthetics, but to also make sure that data is uniform when dealing with databases and such. strtolower() https://www.php.net/manual/en/function.strtolower.php https://www.w3schools.com/php/func_string_strtolower.asp strtoupper() https://www.php.net/manual/en/function.strtoupper.php https://www.w3schools.com/php/func_string_strtoupper.asp ucfirst() https://www.php.net/manual/en/function.ucfirst.php https://www.w3schools.com/php/func_string_ucfirst.asp ucwords() […]

PHP Programming (NEW)
PHP – switch Statements
switch Statements allow you to allow events to happen based on specific values for variables.
Be the first to comment