I am having trouble with a script I am trying to run.
when I try to assign a value to $test it will work.
$test = 2;
print ($test);
"Output is 2"
but when I try this
$test->number = 2;
print ($test->number);
There is no output.
I had a working script but had to move it to another server so I have a feeling that a server setting is messing this script up. I don't have any clue where to start looking to fix the problem. Any suggestions?