Skip to content

Instantly share code, notes, and snippets.

@rodrigoSyscop
Created February 24, 2018 17:04
Show Gist options
  • Select an option

  • Save rodrigoSyscop/53f6259a6be9f593fc58e0414a3829a1 to your computer and use it in GitHub Desktop.

Select an option

Save rodrigoSyscop/53f6259a6be9f593fc58e0414a3829a1 to your computer and use it in GitHub Desktop.
framework/index.php
<?php // framework/index.php
require_once __DIR__.'/init.php';
$input = $request->get('name', 'World');
$response->setcontent(sprintf('Hello %s', htmlspecialchars($input, ENT_QUOTES, 'UTF-8')));
$response->send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment