Embedding PHP inside HTML

VN:F [1.6.9_936]
Rating: 6.0/10 (1 vote cast)

Embed PHP code inside HTML to add some dynamic functionality to your pages.

Common Errors (Part 3)

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Common errors you may come across when programming, and the solutions.

Common Errors (Part 2)

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Common errors you may come across when programming, and the solutions.

Common Errors (Part 1)

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Common errors you may come across when programming, and the solutions.

POST Variable

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Used for passing variables between pages on the submission of forms. The twist is, it’s hidden from the user in the URL (address) bar of a browser.

GET Variable

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Used for passing variables between pages on the submission of forms or manual entry in the URL (address) bar of your browser.

Advanced Function

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Not the trickiest example function, however this will teach you how to output a value created from within the function.

Basic Function

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Creating your own basic function. Showing you a simple function and those that allow you to parse data too.

Loops – Foreach Statement

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

Simply put, the foreach statement lets you loop through the elements in an array. Here video shows you how to apply this loop to make a basic times table application!

Loops – For Statement

VN:F [1.6.9_936]
Rating: 0.0/10 (0 votes cast)

The For statement allows you to loop a block of code a specific number of times. The syntax is a bit trickier, but in time you’ll find it’s a simple, effective loop.