Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.90 KB | None | 0 0
  1. div#wrapper{
  2.     width:965px;
  3.     margin:0 auto;
  4.    
  5. }
  6. .noc-works, .noc-works li {
  7.     float: left;
  8. }
  9.  
  10. .noc-works {
  11.     width:963px;
  12.     margin-left: -50px;
  13.     margin:3px auto 10px auto;
  14.  
  15. }
  16.  
  17. .noc-works li {
  18.     width: 293px;
  19.     margin-right: 28px;
  20.  
  21. }
  22.  
  23. .hBg {
  24.     background-color: brown;
  25.     width: 272px;
  26.     height: 20px;
  27.     padding: 5px 0 0 0px;
  28.     font: normal 11px tahoma;
  29. }
  30.  
  31. .noc-p {
  32.     background-color:aqua;
  33.     width: 100%;
  34.     height: 100px;
  35. margin-left :-10px;
  36. }
  37.  
  38.  
  39. </style>
  40. </head>
  41. <body>
  42.  
  43. <div id="container">
  44. <div id="header"><h1>Resimlerim ://</h1></div>
  45. <p>
  46.  
  47. <?php
  48.  $c1 = mysql_query("SELECT * from images");
  49.  while($c2 = mysql_fetch_array($c1))
  50.  {
  51. echo '<div class="wrapper">
  52. <ul class="noc-works">
  53. <li><h1 class="hBg">'.$c2[titlen].'</h1><p class="noc-p">
  54. <span>RESİM ADRESİ</span></p></li>
  55.    </ul>
  56.  </div> ';}?>
  57.  
  58.              
  59. </p>
  60. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement