for security and best practice,i would like to initialize variables in the begining of my scripts.
i know that i initialize the following like this :
$string = '';
$boolean=true/false;
$int=NULL;
$array = array();
am i correct?
another thing,to check if the variable has been initialized,do i use isset or just if($varname)
?
regards