Advertisement
Guest User

Untitled

a guest
May 27th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?PHP
  2.  
  3. $a="hello";
  4.  
  5. ?>
  6. <script>
  7. function echoHello(){
  8. alert("<?PHP hello(); ?>");
  9. }
  10. </script>
  11.  
  12. <?PHP
  13. FUNCTION hello(){
  14. GLOBAL $a;
  15. ECHO $a;
  16. }
  17.  
  18. ?>
  19.  
  20. <button onclick="echoHello()">Say Hello</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement