FULL STACK   ·   UI   ·   UX   ·   GRAPHICS   ·   DEVELOPER   ·   INSTRUCTOR

Adam Khoury

Donate funds to show love and support

Click the button below to donate funds securely online. You can use your PayPal account or a credit card.

Your donations help free up my time to produce more content and assist in covering server costs. It's also a great way to say thanks for the content!

Application Configuration

Adam will be adding options here soon.

Database Creation and PHP MySQLi Connection Script Tutorial

Published :
Author :
Adam Khoury
Learn to create the Database on your host and write a modular PHP script for establishing connection to that database using the improved MySQLi extension. PHP and MySQL are the core data processing technologies of most popular social networking websites. <?php $db_conx = mysqli_connect("localhost", "worldoi5_adam", "xxxxxxxx", "worldoi5_social"); // Evaluate the connection if (mysqli_connect_errno()) { echo mysqli_connect_error(); exit(); } else { echo "Successful database connection, happy coding!!!"; } ?>