Hi,
In my project I want to save/retrieve following objects
class PurchaseOrderVO
{
PO_no:int;
..... other header info ...
Items:arraycollection;
}
The Items arraycollection contains array of
following class
class POItem
{
Item_cd:string;
Item_rate:number;
Qty:Number;
Amount:Number;
schedule:Arraycollection;
}
the schedule array collection contains following class objects
class itemSchedule
{
DeliveryDate:date;
Qty:number;
remarks:string;
}
can somebody guide me about Flex and PHP code
I should use to save these to three different tables
PO_Master; // po header table
PO_Items; // po items FK in POmaster
PO_SChedule; // schedules FK in POItems
Thanks and best regards
Raja