Hi!
I'm receiving af form posted by flash, which contains a serilized object. Now my trouble is that I get this error:
PHP_Incomplete_Class Object
(
[PHP_Incomplete_Class_Name] => object
[Phone_work] => 123123123
[Phone] => 123123123123
[Email] => asd@asd.dk
[AreaCode] => 1111
[CoAddress] =>
[Address] => asd
[SurName] => asd
[Name] => asd
[Amount] => NaN.00
[Payment] => PostExchange
[Delivery] => ParcelPost
)
I've read that I should initialize the same class as I used to create it, but since it was created in flash I can't.
Also PHP man says I should use ini_set() to make a callback function, but the callback should include the class that created the object, again flash created it! What to else? Any ideas?