How to connect to mysqli database in php?

Create connection.php file and include all CRUD operation’s file for connect database. <?phperror_reporting(0);$DB_HOST = ‘localhost’;$DB_USER = ‘root’; $DB_PASS = ”;$DB_NAME =  ‘mysql’;$conn = mysqli_connect($DB_HOST,$DB_USER,$DB_PASS,$DB_NAME);// Check […]

Read More

Export Database From MySQL

# Open CMD# Step1: Change the directory folder current directory to mysql bin directory. C:UsersPHPKishan> cd D:wamp64binmysqlmysql5.7.19bin ↲ # Step2: write below command line and […]

Read More

Family Tree In PHP

Create Family Tree In PHP 1st Step : Create these belove file and database   - CSS : style.css, ddsmoothmenu.css, ddsmoothmenu-v.css   - JS : ddsmoothmenu.js   - […]

Read More