PHP Basics: Triple Equals

PHP Basics: Triple Equals

Aug 26, 2011

The triple equal (===) compares not only values, but data types too.  

PHP Basics: Common Errors (Part 3)

PHP Basics: Common Errors (Part 3)

Aug 26, 2011

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

PHP Basics: Common Errors (Part 1)

PHP Basics: Common Errors (Part 1)

Aug 26, 2011

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

PHP Basics: A better way to display HTML

PHP Basics: A better way to display HTML

Aug 26, 2011

A much better, faster way of displaying HTML within PHP. In this example, in an IF ELSE statement. Alex from phpacademy

PHP Basics: Embedding PHP within HTML

PHP Basics: Embedding PHP within HTML

Aug 26, 2011

How to embed PHP inside HTML, including an example with a form and a textarea. Please ensure you use the htmlentities() function, wrapped around your $_POST['name'], when submitting data to be displayed on a page.