Class PHP Get link Facebook X Pinterest Email Other Apps require(DIR_WS_CLASSES . 'currencies.php'); require(DIR_WS_CLASSES . 'shipping_new.php'); $currencies = new currencies(); $shipping_new = new shipping_new(); class shipping_new { function get_shipping_address($customerid){ echo $get_address="select * from `address_book` where `customers_id`='$customerid'"; $out_address=mysql_query($get_address); echo $record_address=mysql_fetch_array($out_address); return $record_address; } } $address=$shipping_new->get_shipping_address($_SESSION['customer_id']); ?> Get link Facebook X Pinterest Email Other Apps