Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.99 KB | None | 0 0
  1. <?php
  2.  
  3. function makePost( $title , $body )
  4. {
  5.     $output = '
  6.     <div id="post_n" class="post">
  7.         <h2>'.$title.'</h2>
  8.         <p>'.$body.'</p>
  9.     </div>
  10.     ';
  11.     return $output;
  12. }
  13.  
  14. ?>
  15. <html>
  16. <head>
  17. </head>
  18. <body>
  19.  
  20. <h1>Erik's Blog</h1>
  21.  
  22. <?php
  23.     print makePost( "First Post Title" , "First post body. First post body. First post body. First post body. First post body. First post body. First post body. First post body. " );
  24.     print makePost( "Second Post Title" , "Second post body. Second post body. Second post body. Second post body. Second post body. Second post body. Second post body. Second post body. " );
  25.     print makePost( "Third Post Title" , "Third post body. Third post body. Third post body. Third post body. Third post body. Third post body. Third post body. Third post body. " );
  26.     print makePost( "Fourth Post Title" , "Fourth post body. Fourth post body. Fourth post body. Fourth post body. Fourth post body. Fourth post body. Fourth post body. Fourth post body. " );
  27. ?>
  28.  
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement