Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // PHP Array
- $ar = array('Home', 'Gallery', 'About');
- // How to push new item into array
- array_push($ar, 'Contact');
- ?>
- <html>
- <head>
- <script type="text/javascript">
- var myarray=<?php echo json_encode($ar);?>;
- //Run when DOM is ready
- window.onload=function(){
- for(var i=0; i<myarray.length; i++){
- var link= document.createElement('a');
- link.href="#";
- link.innerHTML=myarray[i];
- document.body.appendChild(link);
- document.body.appendChild(document.createElement('br'));
- }
- }
- </script>
- </head>
- <body>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement