PHP – Htmlentities Function
Whenever you allow your users to submit text to your website, you need to be…
39,956 total views, 2 views today
Whenever you allow your users to submit text to your website, you need to be…
39,956 total views, 2 views today
Prior to PHP 6 there was a feature called magic quotes that was created to…
40,038 total views, no views today
Recall from the PHP Forms Lesson where we used an HTML form and sent it…
40,656 total views, no views today
A “do while” loop is a slightly modified version of the while loop. If you…
39,897 total views, 1 views today
While a For Loop and While Loop will continue until some condition fails, the For…
39,984 total views, 1 views today
The for loop is simply a while loop with a bit more code added to…
12,883 total views, 1 views today
Repetitive tasks are always a burden to us. Deleting spam email, sealing 50 envelopes, and…
6,038 total views, 1 views today
An array is a data structure that stores one or more values in a single…
4,747 total views, no views today
Creating Your First PHP Function When you create a function, you first need to give…
6,144 total views, no views today
Creating the HTML Form If you need a refresher on how to properly make an…
6,782 total views, no views today
PHP Switch Statement: Speedy Checking With the use of the switch statement you can check…
6,123 total views, 1 views today
An if/else statement is great if you only need to check for one condition. However,…
5,097 total views, no views today
Using these conditional statements can add a new layers of “cool” to your website. Here’s…
6,881 total views, 1 views today
The if statement is necessary for most programming, thus it is important in PHP. Imagine…
6,018 total views, no views today
Require vs Include When you include a file with the include command and PHP cannot…
5,484 total views, 1 views today
Without understanding much about the details of PHP, you can save yourself a great deal…
39,547 total views, 1 views today
Comments in PHP are similar to comments that are used in HTML. The PHP comment…
80,627 total views, 1 views today
In all programming languages, operators are used to manipulate or perform operations on variables and…
5,492 total views, 2 views today
PHP – String Creation Before you can use a string you have to create it!…
6,671 total views, 1 views today
As you saw in the previous lesson, the PHP command echo is a means of…
5,481 total views, 1 views today
A variable is a means of storing a value, such as text string “Hello World!”…
5,499 total views, 1 views today
PHP’s syntax and semantics are similar to most other programming languages (C, Java, Perl) with…
6,818 total views, 1 views today
PHP – What is it? Taken directly from PHP’s home, PHP.net, “PHP is an HTML-embedded…
64,455 total views, 2 views today