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. […]

How to use header, footer & item seprator into Flat list?

Hi Everyone 🙂 , today we are going to learn, how to add header, footer and item separator into flat list? There are many props in Flat list. some primary props we had learned in our previous tutorial; you can checkout here Make simple list using Flat List in React […]

How to move from one screens to another?

React Navigation is used for managing the presentation and transition between screens. Here we are discussing about the react navigation 5.X React navigation is born from the react native community. It provides us the feature to move/navigate from one screen to another just by few lines of code. Let’s create […]

How to Uninstall Netbeans On Ubuntu?

Here are the steps to uninstall the ubuntu; Open the terminal If you have installed the netbeans as root/sudo then your uninstall file should be at; cd /usr/local/netbeans-<version number>/ Then check for the uninstall file into the folder using command; dir As we can see there is a file namely […]

How to we install Netbeans 8.2 On Ubuntu?

Here are the steps to install the Netbeans on your Ubuntu; Open the terminal go to the downloads folder using command; cd Downloads/ Use the following command to download netbeans 8.2 shell script file wget http://download.netbeans.org/netbeans/8.2/final/bundles/netbeans-8.2-linux.sh  Install netbeans using following command; sudo bash netbeans-8.2-linux.sh here is installation window which will […]

How to write program for Mini Max Sum in PHP?

Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly for of the five integers. Then print the respective minimum and maximum values. $arr = array(1,4,2,8,4,0); $temp_arr = array(); foreach($arr as $index => $row){     $temp_arr[] = array_sum($arr) – $arr[$index]; } sort($temp_arr); echo […]