Related Articles
PHP Programming (NEW)
PHP – if Statements
If Statements allow you to trigger code if specific conditions are met. <?php $age = 20; print “Your Age is $age”; print “<br>”; if ($age < 18) { print “you too YOUNG”; } ?>
PHP Programming (NEW)
PHP – Why Learn…
Why should you learn PHP when there are two many “better” languages available? It’s easy to learn. You can build practical web apps within a week of starting. Finally a huge number of legacy web […]
*NEW
PHP – isset() Function to Verify if a Variable Has a Value
The isset() function in PHP checks to see if the value of a variable has been set. this can be useful in applications that allow users to login, or make sure that variables are actually […]
Be the first to comment