Skip to content

Instantly share code, notes, and snippets.

@manuel-gonzalez-1988
Last active May 16, 2025 22:52
Show Gist options
  • Save manuel-gonzalez-1988/8ec48476ebf31ff34a575804166444e5 to your computer and use it in GitHub Desktop.
Save manuel-gonzalez-1988/8ec48476ebf31ff34a575804166444e5 to your computer and use it in GitHub Desktop.
detaller_producto
foreach ($productos as $producto) {
echo "Nombre: " . $producto["nombre"] . "<br>";
echo "Precio: $" . $producto["precio"] . "<br>";
echo "Stock: " . $producto["stock"] . "<br>";
echo "Categoría: " . $producto["categoria"] . "<br><br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment