To learn PHP you’ll need a LAMP server of some sort, a text editor, and a good study guide. I highly recommend buying a book because it’s an excellent UI while learning a language.
Related Articles
PHP – Viewing PHP Environment with PHPinfo()
The PHPinfo() function prints out a report of al of the PHP configurations and settings for your server. <?php phpinfo(); ?>
PHP – Access Named Keys in Arrays – Foreach()
The foreach() function can turn Named Keys into variables just like it does array values.
PHP – Setting Variables
Variables in PHP can be set without needing to be declared. <?php $string = “Hello World”; $int = 1; $float = 2.2; print “<h1>String</h1>”; print $string; print “<h1>Int</h1>”; print $int; print “<h1>Float</h1>”; print $float; […]
Be the first to comment