Hi,
Just a simple question about creating objects:
What's the difference between
$var = new myObject();
and
$vary = new myObject;
Is it a different way of calling constructors or something?