Hi,
I have some questions about optimizing PHP code:
1- Do I have always to close MySQL connection using the function mysql_close() ?
2- Do I have always to close an open file using the function fclose() ?
3- If I don't need to use one variable in a session any more,
do I have to un-register it using the function session_unregister() ?
4- When should I use the function session_destroy() in my code? Do really I have to use it?
Thx.