Module # 10 MySQL

For this weeks assignment the process of creating the database, the table and adding a record was very straight forward. I created a table called person and added the fields of FirstName (Text(30)), LastName (Text(30)), Phone (BIGINT), Email (Text(100)), State...

Module # 8 PHP Strings

I thought working with stings in PHP was similar to JavaScript. The both were comprised of defining a variable and setting equal to the string value surrounded in quotes. However what I like about PHP is implementing the string on the page. It can be so easily by...

Module # 7 Functions and Control Structures

I found the the strengths of php functions is implementing the function is easy because you simply inject your function in the php tag in your document. Some of the weaknesses are that JavaScript seems a little more organized because there is more separation of html...

Module # 5 First PHP file

For this module I just created a simple php file with a php echo method for displaying that this is my first file I know the file was simple but its for the first file. Here are the answers to the questions: 1.c 2.a 3.b 4.a To see the example visit...

Module #5 Form Validation

For this module I created a form with three fields. The first field was a required field for any text, the second was for an email and the last was for a phone number. When the user clicks the button to validate the form a window pops up and lets them know the status...

Module #4 Regular Expressions

During this module I incorporate the string and regular expressions into 4 function that were used for validation. The validation was for checking for the correct formats for emails and phone numbers. I used RegEx functions to do so for the string values. My struggles...