Skip to content

PHP MD5 Generator

What it does: Posts text to the server and prints the MD5 hash. MD5 is for learning only, not password storage.

Code

<?php
$input = $_POST['md5me'] ?? '';
$hash = $input !== '' ? md5($input) : '';
?>

Open script →

Live Demo

Live preview runs /scripts/md5.php.

← Back home