HOME > プログラムサンプル > 入力テキストをmd5変換する

入力テキストをmd5変換する

入力文字列を、128ビットのハッシュ値を出力するハッシュ関数md5で変換した結果で出力する

md5.php

<html>
<head>
<title>入力テキストをmd5変換する</title>
</head>
<meta http-equiv=”content-type” content=”text/html; charset=UTF-8″/>
<body>
<form id=”" method=”post” action=”md5.php”>
</form>
md5に変換する文字列を入力してください  <br />
<input name=”pass” id=”pass” type=”text” size=”30″ maxlength=”30″ value=”"/><br />
<input name=”submit02″ type=”submit” value=”確定” id=”submit02″/>
</body>
</html>
<?php
$str = $_POST[”pass”];
$_POST[”pass”]=”";
if (”"!=$str){
echo $str .”->”.md5($str);
exit;
}else{
echo “値を入力してください”;
}
?>

ブックマーク登録: add to hatena hatena.comment 0 user add to del.icio.us 0 user add to livedoor.clip 0 user
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5 out of 5)
Loading ... Loading ...