PHP – Setting Variables Eli the Computer Guy PHP Programming (NEW) 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; ?> PHPVariables
MySQL Introduction (NEW) MySQL – Update Records with PHP Eli the Computer Guy MySQL Introduction (NEW) Using PHP you can update records in your MySQL tables. phpUpdate.php
*NEW PHP – Upload File with HTML Form ($_FILES) Eli the Computer Guy *NEW, PHP Programming (NEW) With an HTML form and PHP you can upload files to your web server. When you use $_FILE in PHP you are able to access information about the file stored in the $_FILE array. Prerequisites: […]
PHP Programming (NEW) PHP – Turn File Into an Array – file() Eli the Computer Guy PHP Programming (NEW) By turning a file into an array you can work with the data within it as you would a standard array.
Be the first to comment