I am learning php and mysql the problem that i am having is how many possible connections mysql will allow using php acording to my textbooks mysql will only allow 100 connections at any one time This is causing me considerable worry as i would want thousands and even millions of people to be able to querie my database at anyone time The database that i have created is located on my isps server using mysql and the php code to interact with that database is located on my isp's cgi gateway
My question is as follows first and formost Is there any limitation on the number of connections to the database that i have created using mysql if so How do you overcome this problem ???
Two :Question two there are two different types of ways that you can connect to a database using php one is two open a conection using mysql_pconnect( "Server Ip or name ", "username","password"); which I understand as being a permanent connection that you have to close when finished with the second is to use mysql_connect( "Server Ip ", Username , password ); this apperently only lasts for the duration of the script. If there are any limitations what do you do can anyone explain this in more detail and how you resolve this problem if at all. I need all the help i can get many thanks
Mark Harrington mark@harrington.force9.co.uk