echo `First, the good parts`;
var_dump([
`Web’s most popular server lang`,
`Incredibly easy to deploy`,
`WordPress, uber popular framework`,
`Templating is built-in`
]);
Slide 4
Slide 4 text
echo `Problem #1`;
echo `Templating is built-in`;
foreach($arr as $el) {
echo `
`;
echo doSomeMysteriousThing($el);
echo `
`;
}
Slide 5
Slide 5 text
echo `Problem #2`;
echo `It can be very inconsistent`;
echo 'hello \nworld';
// hello \nworld
echo "hello \nworld";
// hello
// world