36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?php
|
|
//include '../Includes/valida_sessao.inc';
|
|
?>
|
|
<!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" />
|
|
<link rel="stylesheet" type="text/css" href="../CSS/estilo.css" media="screen" />
|
|
<title>Excluir Cliente</title>
|
|
<script language="javascript" type="text/javascript">
|
|
function voltar(){
|
|
location.href = 'listCliente.php';
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="menuInterno">
|
|
<?php
|
|
include '../Includes/MenuPrincipal.php';
|
|
?>
|
|
</div>
|
|
<form id="form1" name="form1" method="post" action="../FilesOk/excClienteOK.php">
|
|
<p>Tem certeza que deseja excluir este registro?
|
|
<input name="codCliente" type="hidden" id="codCliente" value="<?php echo $_POST['codCliente']; ?>" />
|
|
</p>
|
|
<p>
|
|
<input type="submit" name="btnExcluir" value="Excluir" autofocus class="gmailButton"/>
|
|
<input type="button" name="btnVoltar" value="Voltar" onclick="voltar()" class="gmailButton"/>
|
|
</p>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|