PHP – For Loops Eli the Computer Guy PHP Programming (NEW) For loops are ways to repeat specific code based on whether a condition continues to be true. <?php $x = 1; for ($x; $x <= 20; $x++) { print $x; print "<br>"; } ?> PHP
*NEW Raspberry Pi – Install a LAMP Server (Linux, Apache, MariaDB, PHP) Eli the Computer Guy *NEW, Raspberry Pi You can turn your Raspberry Pi with Raspberry PI OS into a full LAMP web server. We use MariaDB because MySQL is not provided in the main repository and it is a drop in replacement […]
PHP Programming (NEW) PHP – Sort Array by Key – ksort() and krsort() Eli the Computer Guy PHP Programming (NEW) You can sort arrays by key with ksort() and krsort().
PHP Programming (NEW) PHP – Set and Read Cookies – setcookie() Eli the Computer Guy PHP Programming (NEW) Cookies allow you to set variables that are persistent between multiple visits to a website.
Be the first to comment