• Web sitemizin içeriğine ve tüm hizmetlerimize erişim sağlamak için Web sitemize kayıt olmalı ya da giriş yapmalısınız. Web sitemize üye olmak tamamen ücretsizdir.
  • Sohbetokey.com ile canlı okey oynamaya ne dersin? Hem sohbet et, hem mobil okey oyna!
  • Soru mu? Sorun mu? ''Bir Sorum Var?'' sistemimiz aktiftir. Paylaşın beraber çözüm üretelim.

Php ile Md5 Oluşturma

The Punisher

MFC Üyesi
Üyelik Tarihi
6 Haz 2015
Konular
785
Mesajlar
930
MFC Puanı
230
index.php

PHP:
<form action="md5.php" method="POST">  
Kelime: <input type="text" name="md5normal">  
<br>  
<input type="submit" value="Çevir">  
</form>

md5.php

PHP:
<?php  
$md5yap = $_POST["md5normal"];  
echo "<b>Md5 ile Çevrilen Kelime : </b>";  
echo "<input type=\"text\" name=\"gosterim\" value=\"$md5yap\" size=\"35\">";  
echo "<br><br>";  
echo "<b>Md5 ile Oluşturulan Kelime : </b>";  
?>  
<input type="text" name="gosterim" value="<?php echo md5($md5yap)?>" size="35">
 
Üst