June 2011
11 posts
Jun 25th
Jun 25th
Another PHP assessment test sent by another...
I was given another ONLINE assessment test from a site called http://select2perform.com/. The assessment is from a company called PreVisor ONLINE(Pre Employment Screening, Assessment Testing, Online Personality Test) from http://www.previsor.com/. I will try to go over what I remember. This assessment was way harder than the other one I had taken from Proveit2.com. HTML_quickform The...
Jun 13th
1 note
More PHP quizzes (Part 1)
I am at the Orange County Public Library in Orlando, FL reading “SAMS Teach Yourself PHP in 24 Hours” by Matt Zandstra. A PHP book copyrighted in 2004. In this book there are many PHP exercises that are useful for those willing to take the ZEND Certification test. Remember, it is in the easy questions that most of us tend to get wrong. **************** The Building Blocks...
Jun 10th
Jun 5th
PHP Arrays Ex. #2: Simple Array Loop
In this post, I will go over question number #2 from http://phpexercises.com/php-simple-array-loop-exercise.html Please look at my code (what I came up with): <?php /* PHP Arrays Ex. #2: Simple Array Loop For this exercise, you will use a list of ten of the largest cities in the world. (Please note, these are not the ten largest, just a selection of ten from the largest cities.) Create an...
Jun 4th
Job Interview Tips
This month of June has been a blessing. Not only did I get an interview for a web development career position in Orlando, FL but I also made it through the first round of interviews. I was invited back for a 2nd interview. This is all good news. In this post, I am going to talk about my experience with my latest job interview. Let me start by saying that, in the past, I had been through a few...
Jun 4th
'string' == true, 0 == false, 'string' == 0
What happens in the follow piece of code? $a = ‘string’; $b = 0; if($a == true && $b == false && $a == $b) { echo ‘hum rum’; } In ‘string’ == true, any non-null string evaluates to true when compared with a Boolean. In 0 == false, the integer 0 undergoes implicit conversation to Boolean and evaluates to false.  In ‘string’...
Jun 4th
Interesting thread with Melih Birim on OO...
Ravi Gehlot I like PHP way more than ColdFusion. If you know how to program in PHP, you can gain speed(performance) that you would only get it with ColdFusion if you were to get down to JAVA. Also, PHP is more OO.Il y a environ une heure · J’aime Ravi Gehlot ‎:))Il y a environ une heure · J’aime Melih Birim I realized that I hate OOP(it is complex, it is not scalable, it is not organizable, it...
Jun 2nd
A brief about WeLocateRentals.com
A bit about history http://www.WeLocateRentals.com/ was a project that I started working on in August of 2010. It all began in my apartment complex. I happened to be in the complex office using their computers. I noticed that the guy next to me was having some Internet connectivity issues. So I offered to help him. He asked me what I did for a living and I said web development. That guy, Tim...
Jun 1st
Quick Syntax intro to Object Oriented Programming...
This post is a quick reference from Chapter 6: Objects from “Programming PHP” a book published by O’REILLY and authored by Rasmus Lerdorf, Kevin Tatroe & Peter MacIntyre. It’s the 2nd Edition and it covers PHP5. Why use Object Oriented Programming (OOP)? Because it opens the door to cleaner designs, easier maintenance, and greater code re-useability. OOP acknowledges...
Jun 1st
May 2011
7 posts
NULL, NOT NULL and empty
NULL, NOT NULL and empty A database architect may choose to set database columns to either NULL or NOT NULL. Why is this important? Well, it is important because it may have an impact in how you write your SQL statements. If the columns are set to allow NULL then you do not have to list all your columns on your INSERT statements. That’s because NULL means no need to insert a value. But if...
May 29th
PHP Arrays Ex. #1: Simple Array
Let’s brief a bit on Arrays before moving on into this question. Please read the question at http://phpexercises.com/php-simple-array-exercise.html There are two types of Arrays in PHP: Numerical Array or Index Associative Array A Numerical or Indexed array will have numbers for it’s keys. So for example, $a[0] = ‘somebody’, $a[1] = ‘else’, $a[2] =...
May 27th
A few things about the ZEND Certification exam
In the study guide, they mention that REGISTER_GLOBALS and MAGIC_QUOTES_GPC must be set to off. So let’s go over what those are and why they might have wanted it to be set to off. REGISTER_GLOBALS     If OFF, *no* variables passed from $_GET, $_POST and $_COOKIES will be created in the global namespace. Here is an excerpt from IBM’s website: register_globals is not, in and of...
May 26th
PHP Array question number #6 from phpexercises.com
There is a famous quote on practice that goes like this “Practice is the best of all instructors”. Practice is the best way to learn. In this post, we will solve a question from http://phpexercises.com/php-manipulate-array-exercise.html titled “PHP Arrays Ex. #6: Manipulate the Array”. I came up with my own version and then I compared it to what they had come up with. Then...
May 26th
FREE PHP Quizzes
If you know of any good FREE PHP quizzes please post a comment with a link to it. http://www.myphpquiz.com/ http://phpexercises.com/ http://www.w3schools.com/php/php_quiz.asp
May 25th
Bitwise Operators: Studying for the ZEND PHP...
I was going to write a post on Bitwise Operators but I found a really good article written by Jim Plush that can be found at http://www.litfuel.net/tutorials/bitwise.htm He couldn’t have explained any better.
May 25th
Recruiter asked me to take an ONLINE assessment...
Today I took an ONLINE assessment test in PHP from Proveit2.com(Kenexa Prove It! Skills Assessments). All questions were multiple choice questions with only one possible correct answer. I enjoy taking those assessments exams because it is another way to learn. On this post, I will try to comment on the test (what I can remember of it). in_array()     This function checks if a value exists on an...
May 25th
April 2011
1 post
“Choose a job you love, and you will never have to work a day in your life....”
Apr 16th