Guest User

Untitled

a guest
Mar 9th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. $menu1="Home";
  3. $menu2="About";
  4. $menu3="Careers";
  5. $menu4="Gallery";
  6. $menu5="Contact";
  7. ?>
  8. <html>
  9. <head>
  10. <script type="text/javascript">
  11. var myarray=["<?php echo $menu1;?>","<?php echo $menu2;?>","<?php echo $menu3;?>","<?php echo $menu4;?>","<?php echo $menu5;?>"];
  12. //Run when DOM is ready
  13. window.onload=function(){
  14. for(var i=0; i<myarray.length; i++){
  15. var link= document.createElement('a');
  16. link.href="#";
  17. link.innerHTML=myarray[i];
  18. document.body.appendChild(link);
  19. document.body.appendChild(document.createElement('br'));
  20. }
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. </body>
  26. </html>
Add Comment
Please, Sign In to add comment