How would I echo this password,Please note that the password is dynamic and coming from a form
<?php
     $password = "<!\\\\*$troll'*\\\#!>"
     echo "<pre>";
     echo $password; 
     echo "</pre>";
     doEncryption($password);
 ?>
I need to use that passsword in a function for one of my clients.The function needs the password as a parameter.
 
    