When creating a connection to perform a query or non-query. Is it best to open a single connection at the beginning of the page and use it
until the last operation and then close or create a connection and mysql_free_result()/mysql_close() before and after each query?

Is there a big difference in performance between the two? I guess it would really depend on the volume of users...

Thanks,

Justin