Related Articles
PHP Programming (NEW)
PHP – Set and Read Cookies – setcookie()
Cookies allow you to set variables that are persistent between multiple visits to a website.
PHP Programming (NEW)
PHP – Text Editor for Writing…
You can use basic ASCII Text editors to write PHP code. You simply need to save the file with the .php extension.
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; […]
Be the first to comment