PHP – While Loops Eli the Computer Guy PHP Programming (NEW) While loops allow you to repeat code while a condition remains true. <?php $x = 6; while($x <= 10) { print "hello for the $x time."; print "<br>"; $x++; } ?> PHP
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.
PHP Programming (NEW) PHP – switch Statements Eli the Computer Guy PHP Programming (NEW) switch Statements allow you to allow events to happen based on specific values for variables.
PHP Programming (NEW) PHP – Redirect Web Page – header() Eli the Computer Guy PHP Programming (NEW) You can use PHP to redirect visitors to your web page to different pages automatically. This can be good for maintenance tasks and for marketing tracking.
Be the first to comment