poukamisas Posted May 15, 2017 Share Posted May 15, 2017 Καλημέρα σε όλους, θα ήθελα να ρωτήσω πως γίνεται (αν γίνεται) να επιλέξω ένα ημερολογιακό φάσμα π.χ απο 1-1-2013 εώς 1-1-2017 και με βάση αυτή την επιλογή να διαγράψω όλα τα καλάθια αγορών των πελατών. Με μία εντολή και όχι ένα ένα. Link to comment Share on other sites More sharing options...
BalzoT Posted May 15, 2017 Share Posted May 15, 2017 Καλησπέρα, ο τρόπος με τον οποίο θα σου πρότεινα να κάνεις κάτι τέτοιο είναι με το να φτιάξεις ένα ξεχωριστώ script στο οποίο να φέρνεις με ένα query τα cart που θες να διαγράψεις να ετοιμάζεις τα objects και να καλείς την delete function. Σου παραθέτω κώδικά για να γίνω λίγο πιο κατανοητός. <?php include( '../config/config.inc.php'); require_once('../init.php'); $db = Db::getInstance(_PS_USE_SQL_SLAVE_); $data = $db->executeS('SELECT id_cart ' . 'FROM `'._DB_PREFIX_.'cart` ' . 'WHERE ...'; foreach ($data as $cart){ echo 'Deleting cart with id: '. $cart['id_cart'].PHP_EOL; $c = new Cart($cart['id_cart']); $c->delete(); } Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now