Skip to content

Instantly share code, notes, and snippets.

@rodrigoSyscop
Last active February 17, 2018 13:08
Show Gist options
  • Save rodrigoSyscop/c6be37d642a8df2c3b00d32e8b730f4b to your computer and use it in GitHub Desktop.
Save rodrigoSyscop/c6be37d642a8df2c3b00d32e8b730f4b to your computer and use it in GitHub Desktop.
framework/index.php
<?php
// framework/index.php
$input = isset($_GET['name']) ? $_GET['name'] : 'World';
printf("Hello %s", $input);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment