backend.php 101 B

12345678
  1. <?php
  2. // the backend
  3. $string = "hello";
  4. $hash = hash("sha256",$string,false);
  5. echo $hash;
  6. ?>