DARKF3D3 Posted November 7, 2013 Share Posted November 7, 2013 Qualcuno mi sa dire che query devo utilizzare per estrarre dal database di prestashop un elenco di tutti i prodotti con: id prodotto, nome prodotto e nome del produttore. Esempio: 1 iPhone 5 Apple 2 iPhone 4s Apple 3 Galaxy S4 Samsung 4 Galaxy S4 Mini Samsung 5 ... ... 6 ... ... Grazie Link to comment Share on other sites More sharing options...
Guest Posted November 15, 2013 Share Posted November 15, 2013 esempio di semplice script per tirare fuori in una tabella i dati che hai chiesto <table style="width: 100%;" cellpadding="0" cellspacing="0"> <thead> <tr> <th>ID</th> <th>NOME</th> <th>PRODUTTORE</th> </tr> </thead> <?php $qry_prodotti= $db->query("SELECT * FROM ps_product"); while($obj_dati= $db->fetchNextObject($qry_prodotti)){ $SQL_dati_prodotto = $db->queryUniqueObject("SELECT * FROM ps_product_lang WHERE id_product=".$obj_dati->id_product); $SQL_dati_produttore = $db->queryUniqueObject("SELECT * FROM ps_manufacturer WHERE id_manufacturer=".$obj_dati->id_manufacturer); ?> <tr> <th><?php echo $obj_dati->id_product; ?></th> <th><?php echo $SQL_dati_prodotto->name; ?></th> <th><?php echo $SQL_dati_produttore->name; ?></th> </tr> <? php } ?> </table> 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