TransWar File Browser

Path: C:\

<?php
  date_default_timezone_set('America/Sao_Paulo');
  $dateadded = date("d/m/Y"); 
?>
<!DOCTYPE html>
<html lang="pt-br">
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="x-ua-compatible" content="ie=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
    <title>Veículos</title>
    <link rel="icon" type="../image/png" href="../img/favicon.ico">
    <link href="../css/estilo.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" href="../css/redmond/jquery-ui-1.10.1.custom.css" />
    <script src="../js/jquery-1.9.1.js" type="text/javascript"></script>
    <script src="../js/jquery-ui.js" type="text/javascript"></script>
    <script src="../js/jquery.mask.js"></script>
    <script type="text/javascript">
      function showCarga()
        {
          document.getElementById('carga').style.display="block";
        }
      function hideCarga()
        {
          document.getElementById('carga').style.display="none";
        }   
    </script>
  </head>
  <body>
    <div id="geral">
      <div id="cabecalho" align="center" >
        <h1><img src="../images/logo.png"></h1>
      </div>
      <div id="corpo">
        <table width="100%"   align="center"  cellspacing="0" bgcolor="#E9E9E9">
          <form id="form" name="form" method="post" action="veiculos00.php" enctype="multipart/form-data">
            <tr>
              <td colspan="3" align="center" >
                <h2 align="center">PLANILHA DE VEÍCULOS</h2>
              </td>
            </tr>
            <tr>
              <td align="center"  valign="middle" width="20%">
                <table width="100%"   align="center"  >
                  <tr>
                    <td  align="center" >
                      <input type="submit" name="Data" id="Data" class="button2" value="Montar Excel" />
                      <div align="center" class="loading" id="carga" >
                        <img class="imgloading"src="../images/tempo.gif"style="height:30;width:240">
                      </div>
                    </td>
                  </tr>
                  <tr>
                    <td  align="center" >
                      <?php
                      if (isset($_GET['arquivo'])) {$arqxlsx=$_GET['arquivo'];
                          echo '
                      <div id="alert" align="center">
                          <strong>Tabela EXCEL gerada com sucesso!</strong><br>
                          <a href="Excel/'.$arqxlsx.'" download onclick="location.href=\'index.php\';">Tecle p/ Baixar EXCEL</a>
                      </div>';}
                      ?>
                    </td>
                  </tr>
                </table>
              </td>
            </tr>
          </form>
        </table>
      </div>
    </div>
  </body>