Guest User

Untitled

a guest
Jul 20th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <h3>Galéria</h3>
  2. <?  
  3.   $server = "";
  4.   $user = "";
  5.   $pass = "";
  6.   $databaze = "i";
  7.  
  8.  
  9.   $query = "select * from images";
  10.   $result = mysql_query($query) or die("SQL dotaz nešlo provést");
  11.   while ($row=mysql_fetch_array($result)){
  12.  ?><a href="<? echo $adresa . "?i=" . $row["FILE"]; ?>"><div style="position: relative; width: 130px; height: 130px; float: left; margin-left: 18px;display: vertical-align: middle; "><img src="screens/<? echo $row["FILE"]; ?>" style="width: 130px; height: 130px;"></div></a>
  13.  <?
  14.  }
  15.  ?>
Add Comment
Please, Sign In to add comment