Files
Complejo_Cap1tan/php/Agregar_Producto.php
MarcosFlorSalcedo 8ec55e40fc 1ra Versión
2026-07-14 18:24:27 -03:00

16 lines
526 B
PHP

<?php
$data = json_decode(file_get_contents("php://input"), true);
require_once 'conexion.php';
$descripcion = $data['descripcion'];
$precio_venta = $data['precio_venta'];
$precio_compra = $data['precio_compra'];
$cantidad = $data['cantidad'];
$stmt = $conexion->prepare("INSERT INTO productos (Descripcion, Precio_Venta, Precio_Compra, Stock_Disponible) VALUES (?, ?, ?, ?)");
$stmt->bind_param("sddi", $descripcion, $precio_venta, $precio_compra, $cantidad);
$stmt->execute();
echo "Producto agregado correctamente.";
?>