-
-
Save silasrm/7877911 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require('../../dts/dbaSis.php'); | |
require('../../dts/getSis.php'); | |
require('../../dts/setSis.php'); | |
require('../../dts/outSis.php'); | |
$acao = ($_POST['acao'] ? $_POST['acao'] : $_GET['acao']); | |
$acao = mysql_real_escape_string($acao); | |
switch($acao){ | |
case 'completar': | |
$search = mysql_real_escape_string($_GET['term']); | |
$qr = "SELECT * FROM produtos WHERE status = '1' AND titulo LIKE '%$search%' ORDER BY titulo ASC"; | |
$ex = mysql_query($qr) or die(mysql_error()); | |
$resJson = '['; | |
$first = true; | |
while($res = mysql_fetch_assoc($ex)): | |
if(!$first): | |
$resJson .= ', '; | |
else: | |
$first = false; | |
endif; | |
$resJson .= ucfirst(json_encode($res['titulo'])); | |
endwhile; | |
$resJson .= ']'; | |
echo $resJson; | |
break; | |
case 'pesquisar': | |
$pesquisa = mysql_real_escape_string($_GET['valor']); | |
$qr = "SELECT * FROM produtos WHERE status = '1' AND titulo LIKE '%$pesquisa%' ORDER BY titulo ASC"; | |
$ex = mysql_query($qr) or die(mysql_error()); | |
if(mysql_num_rows($ex) >= 1){ | |
while($res = mysql_fetch_assoc($ex)): | |
echo ' | |
<input type="text" class="quantidade qtd" name="quantidade['.$res['id'].']" value="1" /> | |
<input type="text" class="valor" name="valor['.$res['id'].']" value="'.$res['valor'].'" /> | |
<p class="p_estoque">Quantidade em estoque: '.$res['estoque'].'</p> | |
'; | |
endwhile; | |
}else{ | |
echo ' Nada encontrado.'; | |
} | |
break; | |
default: | |
echo 'Selecione uma ação'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment