how to use md5 in php

Solutions on MaxInterview for how to use md5 in php by the best coders in the world

showing results for - "how to use md5 in php"
Valentina
02 Jan 2020
1<?php
2// md5(string, raw)				raw (boolean) is optional
3  $str = "Hello";
4  echo md5($str);
5// md5_file(file, raw)			raw (boolean) is optional
6  $filename = "test.txt";
7  $md5file = md5_file($filename);
8  echo $md5file;
9?> 
Matías
11 Feb 2017
1$pswd = md5($_POST['pswd']);