Skip to content

Instantly share code, notes, and snippets.

@julienanquetil
Created September 5, 2016 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julienanquetil/15cc4d0f1e2f4cdc18ece1460e10c7be to your computer and use it in GitHub Desktop.
Save julienanquetil/15cc4d0f1e2f4cdc18ece1460e10c7be to your computer and use it in GitHub Desktop.
<?php
$name = filter_input(INPUT_GET, 'name', FILTER_SANITIZE_STRING);
$title = filter_input(INPUT_GET, 'title', FILTER_SANITIZE_STRING);
echo $name;
if (!$title || $title ==''){
$title = 'Voici Un Putain de Titre Super Vendeur !';
}
echo $title;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment