Strings Php

  $submittedpass = "myPass";
  $newpass = strtolower ($submittedpass);
  
  echo $newpass . "";
  
  $astring = "hello world";
  echo ucfirst ($astring) . ""; 
  
  $astring = "hello world";
  echo ucwords ($astring); 
?>