Hi! I'm trying to improve my understanding on OOP^^
If I call this file...
set_organization.php file:
$organization = new Organization( );
$organization->name = 'Name here';
$organization->founder = 'Founder here';
then I access it again, are the name, and founder already set? Or should I put unset to ensure it's empty, like fresh start again? I'm kind of confused whether I need to unset it something like this:
$organization = new Organization( );
$organization->name = 'Name here';
$organization->founder = 'Founder here';
unset($organization);
to avoid query related bugs...please help.
Thanks!