How to use Super Variables in PHP?

Hey all, Today we are going to learn about PHP Super Global Variables and how can we use them. The Super global variables are those variables which can be access always. we can access these variable in any function, any file. There are the various type of PHP Super Global […]

How to use PHP Operators?

Hi Everybody, today we are going to learn, how operators can help us to make things helpful for us 🙂 . There are various kind of operators, we are going to study few of most important operators; Assignment Operators Assignment operators are used with numeric values to write a value […]

How to create MySQL Database in PHP?

Hi people, hope you are doing good, today we are going to learn, how can we create MySQL database programmatically. Lets start; First we will create the connection with MySQL. you can check here how to create connection with MySQL.    $conn = new mysqli($hostname, $userName, $password); Create a SQL query for creating database “tempDb” […]

How To Create Connection With MySQL Database?

Hi Guys, today we are going to study about how to create MySQL database connection. There are various ways, one of them we are going to discuss here; Using mysqli Class: Create object of mysqli class, and pass the argument in the constructor as Host name,  user name and  password. […]