Skip to content

Instantly share code, notes, and snippets.

@ambross
Last active July 30, 2016 14:20
Show Gist options
  • Select an option

  • Save ambross/19e23aad0e3b2e8fc0d5b8741037171e to your computer and use it in GitHub Desktop.

Select an option

Save ambross/19e23aad0e3b2e8fc0d5b8741037171e to your computer and use it in GitHub Desktop.
<!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