This question differs from checking if the specific connection is alive or not which I found in SO itself and in Google Search Resutls.
What I want is to check if the mysql connection has already been established. I need to check this, because I have many modules which needs connection to function. The same module is sometimes called where there is no connection and sometimes called when there is already an connection.
You should simply call
mysql_connectwith the same arguments. If an identical connection already exists, it will simply be reused.That was the lazy answer. Obviously the better way would be to structure your program in a way that you know what your program’s status is. Getting rid of the age-old, deprecated mysql_ extension is a first step. Use mysqli or PDO, both of which do not support implicit connections but require you to hand a variable around that represents your connection. That’s what you should do anyway for a sane and modular application structure, then you would not have these kinds of questions.