PHP – Htmlentities Function
Whenever you allow your users to submit text to your website, you need to be…
40,082 total views, 2 views today
Whenever you allow your users to submit text to your website, you need to be…
40,082 total views, 2 views today
Prior to PHP 6 there was a feature called magic quotes that was created to…
40,165 total views, 2 views today
Recall from the PHP Forms Lesson where we used an HTML form and sent it…
40,780 total views, 2 views today
A “do while” loop is a slightly modified version of the while loop. If you…
40,015 total views, 1 views today
While a For Loop and While Loop will continue until some condition fails, the For…
40,110 total views, 2 views today
The for loop is simply a while loop with a bit more code added to…
13,014 total views, 3 views today
Repetitive tasks are always a burden to us. Deleting spam email, sealing 50 envelopes, and…
6,164 total views, 2 views today
An array is a data structure that stores one or more values in a single…
4,986 total views, 1 views today
Creating Your First PHP Function When you create a function, you first need to give…
6,266 total views, 2 views today
Creating the HTML Form If you need a refresher on how to properly make an…
6,907 total views, 2 views today
PHP Switch Statement: Speedy Checking With the use of the switch statement you can check…
6,256 total views, 2 views today
An if/else statement is great if you only need to check for one condition. However,…
5,222 total views, 1 views today
Using these conditional statements can add a new layers of “cool” to your website. Here’s…
6,998 total views, 1 views today
The if statement is necessary for most programming, thus it is important in PHP. Imagine…
6,131 total views, 1 views today