Jump to content

aggiornare quantità prodotti con import di un file csv


PEPPE83

Recommended Posts

  • 3 months later...
  • 2 months later...

Personalmente uso Filemaker, e ho creato una pagina php con questo codice che viene aperta per ogni prodotto in maniera automatica da una webview.

Però lo script potrebbe adattarsi ad un pò tutte le situazioni, col supporto di un browser...

 

<?php

// Gli do due variabili, id prodotto e la quantità
$id = $_GET['id'];
$quantita = $_GET['quantita'];

// Connessione al Database
$host = 'localhost';
$user = 'admin';
$password = '12345';
$db = 'prestashop';
$conn = mysql_connect($host, $user, $password);
mysql_select_db($db);

// Aggiornamento quantità
$query = "UPDATE  `prestashop`.`ps_stock_available` SET  `quantity` =  '".$quantita."' WHERE  `ps_product`.`id_product` =  '".$id."';";
mysql_query($query);

?>

Edited by LorenzoProdon (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...