Skip to content

Instantly share code, notes, and snippets.

View webstylecenter's full-sized avatar

Peter van Dam webstylecenter

View GitHub Profile
<?php
$string = 'hello';
$string .=
$string .= 'world';
echo $string;
<?php
$string = 'hello';
$string .=
$string .= 'world';
echo $string;
<?php
switch(1) {
case 1: print('Temp');
case 2: print('Book');
default: print('Door');
}
?>