Advertisement
Guest User

Code PHP Site

a guest
Jan 5th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. <html>
  2. <body>
  3. <?php
  4.  
  5. $server = "localhost";
  6. $username = "statodellariparazione2";
  7. $password = "a3d5xfA3D5XF";
  8. $database = "my_statodellariparazione2";
  9.  
  10. $db = mysqli_connect($server, $username, $password, $database, '3306');
  11. if ($db->connect_error) die("Failed to connect to database: ".$db->connect_error);
  12.  
  13. $res = mysqli_query($db, "SELECT * from Negozio WHERE progressivo = ".mysql_real_escape_string($_POST['search_id']));
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21. ?>
  22. <body style="background-color:#FFFF6C;border-collapse:collapse;">
  23. <style>
  24. table {
  25. font-family: arial, arial;
  26. border-collapse: collapse;
  27. width:100px;
  28. white-space:nowrap;
  29. }
  30.  
  31. td, th {
  32. border: 1px solid black;
  33. text-align: left;
  34. padding: 1px;
  35. background-color:white;
  36. font-size:50px;
  37. color:red;
  38. }
  39.  
  40. }
  41. .auto-style1 {
  42. text-align: center;
  43. font-size:50px;
  44. }
  45. .auto-style2 {
  46. border-width: 0px;
  47. font-size:50px;
  48.  
  49. }
  50. .auto-style5 {
  51. text-align: center;
  52. background-color:#FFFF6C;
  53. }
  54. .auto-style6 {
  55. color: black;
  56. }
  57. .auto-style7 {
  58. color: blue;
  59. }
  60. </style>
  61. <table>
  62.  
  63. <?php while ($row = mysqli_fetch_array($res)) { ?>
  64. <td><b>Data Nota</b> <b style="color:black;font-size:40px"><b><?php echo date('d-m-Y', strtotime($row['Data_Nota'])); ?></b><br>
  65. <tr>
  66. <td><b>Numero nota</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['progressivo']); ?></b><br>
  67. <tr>
  68. <td><b>Prodotto</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['prodotto']); ?></b><br>
  69. <tr>
  70. <td><b>Marca</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['marca']); ?></b><br>
  71. <tr>
  72. <td><b>Modello</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['modello']); ?></b><br>
  73. <tr>
  74. <td><b>Lavoro</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['riparazione']); ?></b><br>
  75. <tr>
  76. <td><b>Difetto</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['difetto']); ?></b><br>
  77. <tr>
  78. <td><b>Riparato</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['chiudi_nota']); ?></b><br>
  79. <tr>
  80. <td><b>Acconto €</b> <b style="color:black;font-size:40px"><?php echo htmlentities($row['acconto']); ?></b><br>
  81. <tr>
  82. <td><b>Importo dovuto €</b> <b style="color:black;font-size:40px"> <?php echo htmlentities($row['denaro']); ?></b>
  83. </tr>
  84. <td><b style="font-size:40;color:black">Se sono passati più di sette giorni<br> vuol dire che è in attesa di ricambi</b></td>
  85. <tr>
  86.  
  87. <?php } ?>
  88. </table>
  89. <marquee scrollamount="10" style="font-size:65;color:blue"><b>Serpe Riparazioni Civitavecchia Tel: 0766.31200 Cell: 320.9189882 I nostri servizi: Tecnico Lavatrice - Frigo - Lavastoviglie - Cucine. I nostri collaboratori esterni: Idraulico - Antennista - Elettricista - Fabbro - Condizionatori - Muratore - Imbianchino - Tecnico Caldaie - Tecnico macchine da cucire</b></marquee>
  90.  
  91. <hr>
  92. <div align="center">
  93. <table style="width: 100%">
  94. <tr>
  95. <td bgcolor="#FFFF6C" class="auto-style5"><span class="auto-style6">
  96. <strong>Supportaci con un "Mi piace"<br>sulla nostra pagina</strong></span>
  97. <span class="auto-style7"><strong>Facebook</strong></span></td>
  98. </tr>
  99. </table>
  100. <p class="auto-style1"><a href="https://www.facebook.com/serperiparazioni/" target="_blank">
  101. <img alt="Visita la nostra pagina Facebook" class="auto-style2" height="400" src="\fbanim.gif" width="700">
  102. <h5 style="font-size:80px;color:red">Auguri di Buone Feste dallo staff di SERPE RIPARAZIONI</h5>
  103. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement