Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. <div class="galeria-de-fotos">
  2. <h2>GALERIA DE FOTOS</h2>
  3. <form enctype="multipart/form-data" action="upload.php?cliente=<?php echo $idcli; ?>" method="POST">
  4. Enviar esse arquivo: <input class="inselecionar" name="userfile" accept="image/png, image/jpeg" type="file">
  5. <input class="inenviar" type="submit" value="Enviar arquivo">
  6. </form>
  7. <?php
  8. $painelfotos=mysqli_query($con,"select foto from fotos where idcod = '$idcli'");
  9. while($painelfotoslistar=mysqli_fetch_array($painelfotos)){
  10. ?>
  11.  
  12. <div class="img-galeria">
  13. <img src="./fotos/<?php echo $painelfotoslistar['foto']; ?>">
  14. </div>
  15.  
  16. div.galeria-de-fotos{
  17. width: 100%;
  18. max-width: 700px;
  19. height: auto;
  20. margin: auto;
  21. background-color: #ccc;
  22. padding: 10px;
  23. margin-top: 10px;
  24. box-sizing: border-box;
  25. }
  26.  
  27. div.galeria-de-fotos h2{
  28. width: 100%;
  29. max-width: 700px;
  30. height: auto;
  31. background-color: #ccc;
  32. font-size: 20px;
  33. line-height: 30px;
  34. text-align: center;
  35. }
  36.  
  37. div.galeria-de-fotos form{
  38. width: 100%;
  39. font-size: 20px;
  40. padding: 10px;
  41. box-sizing: border-box;
  42. }
  43.  
  44. input.inselecionar{
  45. width: 100%;
  46. font-size: 20px;
  47. background-color: #ccc;
  48. margin-bottom: 10px;
  49. padding: 5px;
  50. box-sizing: border-box;
  51. border: 0px;
  52. }
  53.  
  54. input.inenviar{
  55. width: 100%;
  56. font-size: 20px;
  57. background-color: #0E69A9;
  58. margin-bottom: 10px;
  59. padding: 5px;
  60. box-sizing: border-box;
  61. border: 0px;
  62. color: #fff;
  63. }
  64.  
  65. input.inenviar:hover{
  66. background-color: #6AA2CA;
  67. }
  68.  
  69. div.img-galeria img{
  70.  
  71. width: 100%;
  72. max-width: 210px;
  73. background-color: #000;
  74. padding: 5px;
  75. box-sizing: border-box;
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement