Programming Archives

Learning Some MySQL Basics

MySQL is an open source database management system. (Say that ten times fast!) Since it’s so popular and it works so well with PHP, I’d be crazy not to learn how to use it! So here’s what I’ve learned so far.

Read more »

WordPress Custom Fields Contest at Technosailor

I’ve set my eye on the WordPress Custom Fields Contest from Technosailor. The deadline is March 30th, and the prize includes $200!

Read more »

PHP Day 15: Sessions

I didn’t know what a session was until a couple days ago, so this video shares what I’ve learned so far. It’s a short introduction, three and a half minutes long.

Read more »

PHP Day 14: Cookies

Today I learned just the basic basics of using cookies with PHP. So, this four-minute video is just an introduction.

Read more »

PHP Day 13: Date and Time Functions

I learned about some basic date and time functions a few days ago, but I didn’t finish the video until today because I wasn’t feeling well. So, without further ado, here’s the two-minute video:

Click To Play
play_blip_movie_162992();
Links for PHP Day 13: Date and Time Functions
All from the PHP manual:

PHP: Date and Time Functions - Reference page […]

Read more »

PHP Day 12: Basics of Regular Expressions

This eight-minute video shows how you can use regular expressions to validate input from an HTML form. It’s only an introduction to regular expressions, so see the links for more in-depth explanations.

Click To Play
play_blip_movie_158062();
Links for PHP Day 12: Basics of Regular Expressions
More on regular expression syntax:

Regular Expressions Tutorial - A detailed tutorial from a site […]

Read more »

PHP Day 11: Functions for Form Input Security

This six-minute video covers a couple security issues with HTML forms and how to make forms safer with a few simple PHP functions. There’s also a quick look at the pesky “magic quotes” option.

Click To Play
play_blip_movie_154080();
Links for PHP Day 11: Functions for Form Input Security
Magic quotes:

PHP: Magic Quotes - An overview from the PHP manual.
PHP: […]

Read more »

PHP Day 10: Security Issues with Superglobals and register_globals

This six-minute video explores the security issues and differences between the superglobals $_GET, $_POST, and $_REQUEST, as well as the problematic register_globals option.

Click To Play
play_blip_movie_153347();
Links for PHP Day 10: Security Issues with Superglobals and register_globals
Security issues and differences between superglobals $_GET, $_POST, and $_REQUEST:

PHP Get - Overview of the $_GET superglobal array.
PHP Post - Overview […]

Read more »

PHP Day 9: Using PHP with HTML Forms

Last night I made my first functional HTML form using PHP! It’s very basic, but it works! This five-minute video shows what I learned — not much, but enough to get started.

Click To Play
play_blip_movie_152576();
Links for PHP Day 9: Using PHP with HTML Forms
PHP superglobals:

PHP: Predefined Variables - PHP Superglobals - A list of the […]

Read more »

The Basics of HTML Forms

An overview of almost all of the different tags and attributes used in HTML forms. Update: The video got deleted. :( But I’m going to be making a slide show for this post, which will be much easier to follow than the video was.

Read more »