Decision Tree Outline

The decision tree application is currently a work-in-progress. The main source files can be downloaded here: Source Files. The current demo is non-functional and only shows a subset of the application, which will be developed in the upcoming weeks: Demo Application (Work in progress) ...

July 15, 2012 · 2 min · 253 words · icarnaghan

Number and Password Problems

The following are my responses to a series of simple PHP problems (attached in the Word File). I needed to review Doyle (2010) chapters 9 and 10 which cover form submission and session variables in order to complete these exercises. I also leaned on chapter 18 which goes into depth on regular expressions to assist with pattern recognition. ...

July 6, 2012 · 2 min · 321 words · icarnaghan

More PHP String Functions

This week I rewrote one of the PHP tasks from earlier and created a new function to emulate the functionality of str_pad. The function I wrote accepts a text string parameter, length, a reverse parameter (for padding on left or right) and finally an optional symbol parameter to show where the padding is happening. In addition to this I have outlined what I am planning on developing for a Drupal module later in the semester. ...

June 17, 2012 · 4 min · 776 words · icarnaghan

Strings

PHP provides many different functions for manipulating strings. Some of the more common functions are provided here, however for a full listing of all the available string functions see http://www.php.net/manual/en/ref.strings.php. ...

June 16, 2012 · 4 min · 827 words · icarnaghan

PHP Language Basics

This week I have been focusing on the first few chapters of Doyle (2010), specifically on PHP language basics, decisions and loops and strings. ...

June 10, 2012 · 7 min · 1449 words · icarnaghan

Conditional Statements and Looping

Conditional statements (or decisions) and loops make up a good portion of programming code in general. I am familiar with these concepts though other languages, however I have never programmed them in PHP. This week I have been reviewing the first 5 chapters of Beginning PHP 5.3, which has been giving me a good solid introduction to PHP. ...

June 3, 2012 · 3 min · 536 words · icarnaghan

Data Types, Variables and Constants

Variables in PHP are similar to define and use as with other programming languages. PHP uses loose typed variables, in other words they do not have to be defined specifically as a datatype upon initialization and can be changed to other data types using expressions. ...

June 2, 2012 · 2 min · 291 words · icarnaghan

Introduction to PHP

This week I have been reading the first five chapters of Beginning PHP 5.3, Doyle (2010). Chapter 1 gave a good overview of PHP and it’s advantages. It drew comparisons to other programming languages, which I found interesting coming from a ColdFusion background. ...

June 2, 2012 · 3 min · 477 words · icarnaghan

Dynamic Websites

This summer I have enrolled in a Dynamic Websites independent study for my graduate program. The course will focus mainly on developing PHP programming skills, something I have been lacking and interested in developing for some time. ...

May 28, 2012 · 2 min · 219 words · icarnaghan