Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>0.3.7 Objects</title>
- <style type="text/css">
- body
- {
- margin:0;
- padding:0 0 23px;
- text-align:left;
- font-size:17px;
- color:#78645a;
- background:#c6b9ac;
- }
- #page-container{width:820px;margin:42px auto 0;background:#fff url(i/page.png) repeat-y -820px 0;}
- #content{padding-bottom:32px;background:url(i/page.png) no-repeat -1640px 100%;zoom:1;}
- .features{overflow:hidden;margin:35px 0 75px;zoom:1;}
- .features div{float:left;width:600px;margin-right:20px;}
- .features div.first{margin-left:110px;} /* Waiting for IE6 death (:first-child) */
- </style>
- </head>
- <body>
- <div id="page-container">
- <div id="content">
- <div class="features">
- <div class="first">
- <?php
- echo '<h2> Objects added 0.3.7 RC1 (z)</h2>';
- for ($i= 19522; $i != 19902; $i++)
- {
- $nombre_fichero = 'objects/' . $i . '.jpg';
- if (file_exists($nombre_fichero))
- {
- echo '<img src="'.$nombre_fichero.'" width="150px" height="150px"/> <br/> <li>ID: '. $i . ' </li>';
- }
- echo "\n";
- }
- ?>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement