fork download
  1. <?php
  2.  
  3. $name = "Php string";
  4.  
  5. $echostr = <<< EOF
  6. <div onClick="uchat('$name')"></div>
  7. EOF;
  8.  
  9. echo $echostr;
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
<div onClick="uchat('Php string')"></div>