<?php
$plain = "My Password";
echo $plain." Plain<br>";
$encrypted = crypt ($plain, "$2$ujuyhtgfredswq");
echo $encrypted." Encrypted<br>";
$encrypted = md5 ($plain);
echo $encrypted." Encrypted<br>";
$date_stamp = safe_date("YmdHi");
$unix_date = time();
echo $unix_date;
?>