Inside-Out - Web Design & Development 4 Beginners

PHP basics

Adding data – MySQL with PHP

Adding data – MySQL with PHP
January 8, 2010
PHP basics

Here is the solution that all PHP/MySQL newbies ask for – how to add data to a MySQL database table using PHP via a webpage.

Creating a Loop in PHP

Creating a Loop in PHP
December 20, 2009
PHP basics

In PHP, wouldn’t it be useful to be able to simply ‘loop’ through data to cut down on repetition. Of course this functionality already exists and is central to so many things that you can do with versatile language.

Simple PHP Arrays

Simple PHP Arrays
December 11, 2009
PHP basics

An array is a collection of multiple values or ‘compartments’ stored in one variable. Arrays can be used to sort, group, count data and make it available to the front end user.

Adding today’s date & time to a web page

Adding today’s date & time to a web page
October 2, 2009
PHP basics

How do you add today’s date and timeto a web page? I don’t want to have to manually update it myself! Try date() with PHP.