Advertisement
ZumeZero

Untitled

Jan 24th, 2015
573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.13 KB | None | 0 0
  1. <html>
  2.    
  3. <head>
  4.     <title>0.3.7 Objects</title>
  5.  
  6.     <style type="text/css">
  7.     body
  8.     {
  9.         margin:0;
  10.         padding:0 0 23px;
  11.         text-align:left;
  12.         font-size:17px;
  13.         color:#78645a;
  14.         background:#c6b9ac;
  15.     }
  16.     #page-container{width:820px;margin:42px auto 0;background:#fff url(i/page.png) repeat-y -820px 0;}
  17.     #content{padding-bottom:32px;background:url(i/page.png) no-repeat -1640px 100%;zoom:1;}
  18.     .features{overflow:hidden;margin:35px 0 75px;zoom:1;}
  19.     .features div{float:left;width:600px;margin-right:20px;}
  20.     .features div.first{margin-left:110px;} /* Waiting for IE6 death (:first-child) */
  21.  
  22. </style>
  23. </head>
  24.  
  25. <body>
  26.     <div id="page-container">
  27.         <div id="content">
  28.             <div class="features">
  29.                 <div class="first">
  30.                 <?php
  31.                 echo '<h2> Objects added 0.3.7 RC1 (z)</h2>';
  32.                 for ($i= 19522; $i != 19902; $i++)
  33.                 {
  34.                     $nombre_fichero = 'objects/' . $i . '.jpg';
  35.  
  36.                     if (file_exists($nombre_fichero))
  37.                     {
  38.                         echo '<img src="'.$nombre_fichero.'" width="150px" height="150px"/> <br/> <li>ID: '. $i . ' </li>';
  39.                     }
  40.                     echo "\n";
  41.                 }
  42.                 ?>
  43.                 </div>
  44.             </div>
  45.         </div>
  46.     </div>
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement