Skip to main content

Posts

Showing posts from June, 2021

Connect to MySQL with PHP in XAMPP or WAMP server || MySQL database connection with PHP

This video will discuss how to connect to MySQL with PHP. I'm using PhpMyAdmin and connect MySQL database with PHP using the WAMP server. And you can use this code any php server. . . . WampServer Version 3.1.9 64bit Created by Romain Bourdon (2005) Maintainer / Upgrade to 2.5 by Herve Leclerc Upgrade to 3 by Otomatic (wampserver@otomatic.net) Multi styles for homepage by Jojaba Installer by Inno Setup: http://www.jrsoftware.org/isinfo.php Forum Wampserver: http://forum.wampserver.com/index.php ______________________ Versions used ______________________ Apache 2.4.39 Port 80- PHP 7.2.18 MySQL 5.7.26 Port 3308 PHP 5.6.40 for CLI (Command-Line Interface) CODE:- <?php //DB connection // new mysqli(host, user, password, database name); $connect = new mysqli("localhost:3308", "bit", "bitbyte", "bit_yt"); //Check connection if($connect->connect_error){ echo "Failed to connect to MySQL: ". $connect->connect_error; exit(); } ...

IGI 1 | Mission 2 | SAM Base | Gameplay

Project IGI is a first-person shooter in which we have to penetrate an enemy base combining action-packed sequences with others that require more strategy. The former company Eidos Interactive that published video games of the likes of Commandos, Tomb Raider or Gexx and was later absorbed by Square Enix released a first-person shooter called Project IGI (Project I'm Going In) back in 2000.

How to Create New MySQL User | import sql file in mysql | phpmyadmin | xampp

This video based on creating a new user and import data using the MySQL database. I've tried to show How to create a new user in the database and give permission. And I've created dummy data and import those data to the MySQL database. . . . phpMyAdmin is a free and open source administration tool for MySQL and MariaDB. As a portable web application written primarily in PHP, it has become one of the most popular MySQL administration tools, especially for web hosting services. . create a free dummy data for MySQL : https://mockaroo.com/