9.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > </head> <body> <h1>JavaScript</h1> <ul> <script> i = 0; while (i < 10){ document.write( "<li>hello world</li>" ); i = i + 1; } </script> </ul> <h2>php</h2> <ul> <?php $i = 0; while ( $i < 10){ echo "<li>hello world</li>" ; $i = $i + 1; } ?> </ul> </body> </html> |