Drawmack, Thanks for responding
However I am seeing the opposite as you have explained it. pconnect() will open connections and will not close them until the server decides, whereas connect() will close on explicit command or once the script completes. So you shouldn't have a lot of open, unused connections with connect().
Also, pconnect() will only reconnect you if there is an open link that matches your host,user,pw arguments. On a shared host, another site could leave many open connections but you cannot grab them because they do not match your host/user/pw criteria.
So I see the tradeoffs as follows:
pconnect() pros: Connection recycling
pconnect() cons: No control over managing connections
connect() pros: Connection management
connect() cons: Overhead of creating connections
So the question is, which con is a bigger issue?