Benim veritabanından bilgi almak için çalışırken ben bu sayfa ile aşağıdaki hatayı alıyorum;
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM catalog_product_entity cpe inner join catalog_product_entity_varchar cpev o' at line 5
Ben aşağıdaki gibi kullanıyorum kodu;
include("conn.php");
//Get all products that are configurable
$query = "SELECT cpe.entity_id entity,
cpe.sku sku,
cpe.category_ids categories,
cpev.value title,
FROM catalog_product_entity cpe inner join catalog_product_entity_varchar cpev on cpe.entity_id = cpev.entity_id
WHERE cpe.type_id = 'configurable' LIMIT 0,30";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_assoc($result))
{
echo "id :{$row['entity']} <br>" .
"sku :{$row['sku']} <br>" .
"value :{$row['title']} <br>" .
"Categories : {$row['categories']} <br>";
}
Ne yapmaya çalışıyorum olmayan bir magento sitesinde görüntülemek için bir magento veritabanından ürünleri almak için.