Hi,
I have a question in regards to best practice.
Currently I have a php file called dbConnStart which starts the database connection:
$serverName = "localhost";
$username = "root";
$password = "";
//create connection
$conn = new mysqli($serverName, $username...