Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $example = 'example';
  3. $wellArray = array (
  4. 'Arrays are a lot of fun.',
  5. 'Bootstrap is an amazing development tool to use with PHP',
  6. 'With bootstrap you can quickly code and design beautiful websites'
  7. );
  8. ?>
  9. <html>
  10. <head>
  11. <title>PHP in HTML Example</title>
  12. <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  13. <link rel='stylesheet' type='text/css' href='//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'>
  14. </head>
  15. <body>
  16. <h1>Short code <?=$example;?></h1>
  17. <? foreach($wellArray as $well) {
  18.  print "<div class='well'>$well</div>";
  19. }
  20. ?>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement