PHP inheritance is available now. A good tutorial is at http://www.webreference.com/programming/php/class_inherit/
AMFPHP (And WebORB) allow you to "map" objects between PHP and Flex. You would connect to your database in PHP and create an array of objects to return to Flex. AMFPHP serializes these objects and sends them to Flex. Flex then unserializes these objects and creates local objects of the same type. You may like to check into some tutorials and read up on Value Objects or Data Transfer Objects. --- In [email protected], "Deniz Davutoglu" <[EMAIL PROTECTED]> wrote: > > Hello Guys, > We are goint to write some application with flex/amfphp. Our php Guy > ask me how can we create inheritance in php classes or how we can > settle continuality in application. > > For exsample > we have one class to connect to database another that check login > status(which need to get some data from mysql) . in classical php way > you include db class in begining of login checkin class. how do we do > it in amfphp? > > thanks > > Deniz >

