PHP Notes:

default

 
// This is a single line comment

/*
  This is a multiline
  comment
*/

$thisIsAVariable = "Holas!"
echo $thisIsAVariable;

$thisIsAnArray = array('Torta', 'Lips')
echo $thisIsAnArray[0];

$thisIsAnAssociativeArray = ['Item1' => 'Book', Item2 => 'Bottle'];
echo $thisIsAnAssocitiveArray['Item2']

default