49 lines
1.7 KiB
PHP
49 lines
1.7 KiB
PHP
|
<?php
|
||
|
if (session_status() !== PHP_SESSION_ACTIVE){
|
||
|
session_start();
|
||
|
}
|
||
|
include("../conexao.php");
|
||
|
include('../menu.php');
|
||
|
?>
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Pesquisar Orçamento por Cliente</title>
|
||
|
<link rel="stylesheet" href="../css/menu.css">
|
||
|
<link rel="stylesheet" href="../css/article.css">
|
||
|
<link rel="stylesheet" href="../css/input.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php echo $nav; ?>
|
||
|
<article>
|
||
|
<section class='center'>
|
||
|
<h1>Pesquisar Orçamento por cliente</h1>
|
||
|
<form method="POST" action="">
|
||
|
<label>Cliente: </label>
|
||
|
<input type="text" name="nome" placeholder="Digite o cliente do orçamento" size="30"><br><br>
|
||
|
<input type="submit" class='buttons' name="SendPesqUser" value="Pesquisar">
|
||
|
</form><br><br>
|
||
|
|
||
|
<?php
|
||
|
$SendPesqUser = filter_input(INPUT_POST, 'SendPesqUser', FILTER_SANITIZE_STRING);
|
||
|
if($SendPesqUser){
|
||
|
$nome = filter_input(INPUT_POST, 'nome', FILTER_SANITIZE_STRING);
|
||
|
$query = "SELECT * FROM consulta_orcamentos WHERE cliente like '%$nome%'";
|
||
|
$resultado = mysqli_query($con, $query);
|
||
|
while($row = mysqli_fetch_assoc($resultado)){
|
||
|
echo "<h2>Orçamento N°: ".$row['orcamento']."<br>Cliente: ".$row['cliente']."<br></h2>";
|
||
|
echo "Data Abertura: " . $row['data'] . "<br>";
|
||
|
echo "Valor: " . $row['valor'] . "<br>";
|
||
|
echo "Prestador: " . $row['prestador'] . "<br>";
|
||
|
echo "Data de Expiração: " . $row['data_expiracao'] . "<br>";
|
||
|
echo "Serviço: " . $row['servico'] . "<br>";
|
||
|
echo "Observação: " . $row['observacao'] . "<br><hr>";
|
||
|
}
|
||
|
}
|
||
|
?>
|
||
|
</section>
|
||
|
</article>
|
||
|
<?php echo $footer; ?>
|
||
|
</body>
|
||
|
</html>
|