On Monday, it was just an intro class towards what Zend studio, VM and really basic stuff. Bear in mind, this is the fundemental PHP 1 class. Eventhough I am a little more advanced than this class offers, it is a great refresher on better coding practices and truely understanding the basics of PHP.
It is basic to the bone, we went over variable, constants and arrays. Believe it or not, eventhough I have about 3 yrs of PHP experience, there were materials I hardly ever used or even never even heard of it, before! Do you know that 'print' command only prints the value and it can be assigned inside a variable, but not the case with 'echo' command?
And I didn't know you can reindex numeric array()!
<?php
$myArray = array(2 =>"first value", 3=>"second value", 4=>"third value");
?>