Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Jamie Harding

Jamie Harding

Jamie Harding has asked 1 questions and find answers to 0 problems.

Stats

5
EtPoint
0
Vote count
1
questions
0
answers

About

I am a new programmer, I have been coding

<?php
    for($i=0; $i<3; $i++){
        switch ($i) {
           case 0:
                 echo "games since 2009,";
                 break;
           case 1:
                 echo "websites since 2012";
                 break;
           case 2:
                 echo " and mobile applications since 2014.";
                 break;
        }
    }
?>

I spend a lot of my time building and burning servers. I Work at House of Type coding websites with WordPress.

You'll usually find me in the darkest corner of the office with several cups of coffee and Stackoverflow at the ready.

There is still a lot I have got to learn and I must apologise in advance for any stupid mistakes I will make!

Jamie Harding answers