Changing From mysql_ Functions to mysqli_

Here are the similarities and differences I noticed when switching from the mysql_ prefixed functions to the mysqli_ functions in PHP. Creating a Connection Creating and closing a connection are exactly the same using mysqli_: // Creating a Connection with mysql_connect() $conn = mysql_connect($servername, $username, $password); // Do stuff with […]