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