I have a mysqli_query statement like so:
$result = mysqli_query($connection,$query)
I am wondering: If I call mysqli_query multiple times during the execution of a script, does it use the same connection to the db? Or is a new connection established each time?
Thanks,