wmendes
(usa Ubuntu)
Enviado em 04/06/2013 - 11:05h
Tenho no meu BD a tabela CLIENTES com os campos (id, nome, telefone, telefone1, setor, cidade, data)
<?php
error_reporting(0);
session_start();
include("conexao.php");
include("funcoes.php");
?>
<?php
if(isset($_POST['acao']) && $_POST['acao'] == "inserir"){
$nome = trim($_POST['nome']);
$telefone = trim($_POST['telefone']);
$telefone1 = trim($_POST['telefone1']);
$setor = trim($_POST['setor']);
$cidade = trim($_POST['cidade']);
$data = date("Y/m/d");
if($nome == "" || $telefone == "" || $setor == "" ){
echo "<script>alert('Os campos não podem ficar vazios!');location.href='teste1.php'</script>";
}else{
$inserir = mysql_query("INSERT INTO clientes (nome, telefone, telefone1, setor, cidade, data) VALUES('$nome', '$telefone', '$telefone1', '$setor', '$cidade', '$data')");
echo "<script>alert('Cadastro realizado com sucesso!');location.href='teste1.php'</script>";
}
}
?>
<?php
if(isset($_POST['acao']) && $_POST['acao'] == "buscar"){
$busca = trim($_POST['buscar']);
if($busca == ""){
echo "<script>alert('O campo busca cliente não pode ficar vazio!');location.href='teste1.php'</script>";
}
$buscar_cliente = $_POST['buscar'];
$sql = mysql_query("SELECT * FROM clientes WHERE nome LIKE '$buscar_cliente%'");
$sql1 = ("SELECT * FROM clientes WHERE nome REGEXP '^P.*[[:blank:]]M.*[[:blank:]]d.*[[:blank:]]G.*'");
$sql_result = mysql_num_rows($sql);
while($result_clientes = mysql_fetch_array($sql)){
$nome_clientes = $result_clientes['nome'];
$telefone_cliente = $result_clientes['telefone'];
$telefone1_cliente = $result_clientes['telefone1'];
$setor_cliente = $result_clientes['setor'];
$cidade_cliente = $result_clientes['cidade'];
echo "$result_clientes[1]<br/> ";
}
}
?>
<h1>Cadastro Clientes Showroom</h1>
<br/>
<form action="" method="post" enctypte="multipart/form-data">
<table width="625" border="0">
<tr>
<td>Nome:</td>
<td width="546"><input type="text" value="<?php echo $nome_clientes;?>" name="nome" id="nome" size="50" maxlength="60" />
<span class="style1"></span></td>
</tr>
<tr>
<td>Telefone:</td>
<td><input name="telefone" type="text" value="<?php echo $telefone_cliente;?>" id="telefone" maxlength="10" />
ou
<input name="telefone1" type="text" value="<?php echo $telefone1_cliente;?>" id="telefone1" maxlength="10" /></td>
</tr>
<tr>
<td width="180px">Setor de Atendimento</td>
<td><select name="setor" id="setor">
<option selected="selected" values="vendas">VENDAS</option>
<option selected="selected" values="cnh">CNH</option>
<option selected="selected" values="seguros">SEGUROS</option>
<option selected="selected" values="caixa">CAIXA</option>
<option selected="selected" values="pecas">PEÇAS</option>
<option selected="selected" values="oficina">OFICINA</option>
<option selected="" value="<?php echo $setor_cliente;?>"><?php echo $setor_cliente;?></option>
</select>
</td>
</tr>
<tr>
<td>Cidade:</td>
<td><input name="cidade" type="text" value="<?php echo $cidade_cliente;?>" id="cidade" maxlength="10" />
<span class="style1"></span></td>
</tr>
<tr>
<td colspan="2">
<input name="cadastrar" type="submit" id="cadastrar" value=" Cadastrar " />
<input type="hidden" name="acao" value="inserir" />
<input type="reset" name="apagar" value=" Limpar Campos " />
</td>
</tr>
</table>
</form>
<br />
<form action="" method="post" enctypte="multipart/form-data">
<input type="text" name="buscar" />
<input type="submit" name="enviar" Value=" Buscar Cliente " />
<input type="hidden" name="acao" value="buscar" />
<input type="reset" name="apagar" value=" Limpar Busca " />
</form>