i have a class that i am using for establishing and closing connections to the database etc.
what i would like to know is - is it better to serialize these objects and pass them over pages or should i just "kill" the object and recreate it on the next page?
also what is the best way to kill and objects?
does :
$object_name = null;
do the job entirely or does this leave traces behind?
thanx in advance