I've combined two tables with JOIN , the two tables have some columns with the same names ... When extracting data with PHP how will I differentiate?
Example :
foreach($dados as $values){
echo $values['price'];
}
How do I know if $ values ['price'] returns price from table ps_product or ps_product_attribute ?