I am going through a PHP Script and the code/syntax I saw is totally new to me. Can anyone tell me in detail what actually its about?
$products = $this->db->select(
    array(
        'table'=>'product_categories pc, product_price pp, alias a, products p 
                    LEFT JOIN product_images pi 
                    ON 
                    pi.product_id = p.id ',
        'fields'=>'*',
        'condition'=>"pc.category_id='" . $row['id'] . "' 
                        AND 
                    pc.product_id = p.id 
                        AND 
                    pp.product_id = p.id  
                        AND 
                    a.table_id = p.id 
                        AND 
                    a.table_name = 'products'", 
        'order'=>'p.ordr ASC'));
 
     
    