Hi everyone, hope you all are doing great and learning something new everyday 🙂 . so today we are going to learn how can we make a round shape around a icon or text. Lets Start !! First create a circle, for this we need height, width, radius will be […]
How to use PHP Operators?
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?
How to use header, footer & item seprator into Flat list?
How to use flat list in react native?
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?
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 […]