Guest User

Untitled

a guest
Jan 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. $myVariable = 'Hello, world!';
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta charset="utf-8" />
  8. <script>
  9. var myVariable = '<?php echo $myVariable; ?>';
  10. </script>
  11. <body>
  12. <script>
  13. alert(myVariable); // should alert 'Hello, world!'
  14. </script>
  15. </body>
  16. </html>
Add Comment
Please, Sign In to add comment