Fatal error: Call to undefined function: () in /.../pages/sample-crypto.php on line 33
Change
$crypt = isset($_POST['crypt'])?$striptags($_POST['crypt']):NULL;
to
$crypt = isset($_POST['crypt'])?strip_tags($_POST['crypt']):NULL;
in pages/sample-crypto.php