Guest User

show hello <br /> world

a guest
Jan 4th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <script>
  2. function myfunction(mydata)
  3. {
  4.    alert(mydata)
  5. }
  6. </script>
  7. <?php
  8. $data = nl2br("hello \n world");
  9. $data = preg_replace( "/\r|\n/", "", $data );
  10. echo '<a href="javascript:void(0);" onClick="myfunction(\'' . $data . '\');">Click</a>';
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment