NOTES: 2021-04-26 | Notes on LinkedIn Learning PHP Videos
These notes are continued from this post. How to Retrieve Data from a MySQL database with PHP (with mysqli) Best practice: Always free result and connection when done. db_connect_guide.php // Credentials $dbhost = ‘localhost’; $dbuser = ‘webuser’; $dbpass = ‘secret’; $ dbname = ‘globe_bank’; // 1. Create DB Connection $conn = mysqli_connect( $dbhost, $dbuser, $dbpass, […]
NOTES: 2021-04-26 | Notes on LinkedIn Learning PHP Videos Read More »