All,
I have the following PHP5 code.
$request = NULL;
$request->{"header"}->{"sessionid"} = $_SESSION['testSession'];
$request->{"header"}->{"type"} = "request";
It appears that line 2 and 3 are producing the following error:
PHP Strict standards: Creating default object from empty value
How can I fix this error?
Thanks