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 Programming (NEW)
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; […]
PHP Programming (NEW)
PHP – switch Statements
switch Statements allow you to allow events to happen based on specific values for variables.
*NEW
PHP Projects – Free IP Geolocation API with IPinfoDB
IPinfoDB offers a free IP Geography API that is compatible with basic PHP. This allows you to try to determine location of the cloud servers that you use for your organization. Remember that is basically […]
Be the first to comment