php md5 encrypt

Solutions on MaxInterview for php md5 encrypt by the best coders in the world

showing results for - "php md5 encrypt"
Jasmine
14 Apr 2019
1<?php
2
3$str = "Hello";
4
5echo md5($str);
6
7?>