Learn.
Test.
Build.
A lightweight collection of tiny scripts to copy, test, and learn from.
Browse scripts →Bash basics →
Browse scripts →Bash basics →
A real little state machine: press the demo button and it snaps through default → armed → fired → locked.
<?php
$input = $_POST['md5me'] ?? '';
$hash = $input !== '' ? md5($input) : '';
?>