The PHPinfo() function prints out a report of al of the PHP configurations and settings for your server.
<?php
phpinfo();
?>
The PHPinfo() function prints out a report of al of the PHP configurations and settings for your server.
<?php
phpinfo();
?>
You can send emails directly from PHP scripts using the mail() function. You need to have a local email server setup to do this, to to learn it’s best to use a shared hosting account […]
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() […]
The isset() function in PHP checks to see if the value of a variable has been set. this can be useful in applications that allow users to login, or make sure that variables are actually […]
Be the first to comment