Last active
July 30, 2016 14:20
-
-
Save ambross/19e23aad0e3b2e8fc0d5b8741037171e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Hello loop</title> | |
| </head> | |
| <body> | |
| <?php | |
| $data = "Hello world I am Awesome"; | |
| $img = 'http://lorempixel.com/output/food-q-c-640-480-7.jpg'; | |
| echo "<div class='main-div'>"; // will not be looped! | |
| for ($i=0; $i < 4; $i++) { | |
| echo '<div class="top-div">'; | |
| echo '<h1>'.$data.'</h1>'; | |
| echo '<img src='.$img.'></img>'; | |
| echo '</div>'; | |
| } | |
| echo '</div>'; | |
| ?> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment