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>Transwar</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 type="text/javascript">
        function Click()
            {
            document.getElementById('alert').style.display = 'none';
            }

        function showCarga()
               {
            document.getElementById('carga').style.display="block";
                }
        function hideCarga()
        {
            document.getElementById('carga').style.display="none";
        }   
        $("input[name=Data]").click(function(e){
            $('#carga').show();
        });    
    </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="pre_fatura_brainfarma02.php" enctype="multipart/form-data">
            <tr>
              <td colspan="3" align="center" >
                <h2 align="center">PLANILHA DE PRÉ-FATURA BRAINFARMA</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="Gerar Planilha" />
                  <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="'.$arqxlsx.'" download onclick="Click(this);">Tecle p/ Baixar EXCEL</a>
                    </div>';}
                ?>
                </td></tr>
              </table>
            </td>
          </tr>
        </form>
    </table>
</div>
</div>
</body>