Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.81 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: ramon
  5.  * Date: 27/09/15
  6.  * Time: 18:33
  7.  */
  8. require_once("banco_investigadores.php");
  9. require_once("seguranca.php");
  10. protegePagina();
  11. ?>
  12.  
  13. <html>
  14.     <head>
  15.         <title>SWI - Sleuthkit Web Interface</title>
  16.         <meta charset="utf-8">
  17.     </head>
  18.     <body>
  19.         <form action="cadastrar_usuario.php" method="post">
  20.             <h1 align='center'>Investigadores Cadastrados</h1>
  21.             <table align='center' border='1px'>
  22.                 <?php
  23.                 seleciona_investigadores_tabela(); //vem do script banco_investigadores
  24.                 ?>
  25.             </table>
  26.             <input type='submit' value='Cadastrar Investigador' name='cadastrar'>
  27.             <input type='submit' value='Sair' name='sair'>
  28.         </form>
  29.     </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement