buen dia a todos, me podrian ayuda rcon esta validacion, necesito verificar que la cantida de productos vendidos no sean mayor a la existencia en stock, aqui esta el codigo q tengo
Código PHP:
Ver original$venta = $_SESSION["CarritoVentas"];
for($i=0;$i<count($venta);$i++){
$sql2 = "select existencia from productos where '".$venta[$i]['txtCodigo']."'";
$stmt = $this->dbh->prepare($sql2);
$num = $stmt->rowCount();
if($row = $stmt->fetch(PDO::FETCH_ASSOC))
{
$p[] = $row;
}
$existenciadb = $row[0]["existencia"];
if($venta[$i]['cantidad'] < $existenciadb) {
echo "ERROR";
}
}