How to Install PHPMyAdmin Amazon EC2 Instance on Linux Ubuntu

phpMyAdmin is a database management tool for MySQL compatible databases. The current version of phpMyAdmin, at the time of this recording, supports MySQL 5.5 or later. If you’re using MySQL 5.0-5.4, you need to use phpMyAdmin 4.0. The current version of phpMyAdmin also supports MariaDB 5.5 or later. Install PHP MySQL on ubuntu ec2 instance; In … Read more

How to Install Apache 2 on AWS Ubuntu Linux 18.04 / 20.04 / 22.04

Apache is the web server that processes requests and serves web assets and content via HTTP. MySQL is the database that stores all your information in an easily queried format. PHP is the programming language that works with apache to help create dynamic web content. In this tutorial, i am going to show you how to … Read more

How to Create EC2 Instance in AWS Step by Step Free

Amazon EC2 provides a wide selection of instance types optimized to fit different use cases. Instance types comprise varying combinations of CPU, memory, storage, and networking capacity and give you the flexibility to choose the appropriate mix of resources for your applications. In this tutorial, i am going to show you how to create/launch ec2 intance … Read more

JavaScript IIFE – Immediately Invoked Function Expression

JavaScript IIFE; Through this tutorial, i am going to show you what is IIFE and how to use JavaScript IIFE with the help of examples. JavaScript Immediately-invoked Function Expressions (IIFE) An Immediately-invoked Function Expression that runs as soon as it defined. An IIFE can be used for avoiding the variable hoisting from within the blocks and … Read more

JavaScript: sessionStorage

SessionStorage in javaScript; Through this tutorial, i am going to show you javascript sessionStorage and it’s usages. JavaScript sessionStorage SessionStorage in JavaScript In JavaScript, sessionStorage is a type of web storage that allows storing data locally within the user’s browser and it clear when the page session ends. This data will be deleted when the browser … Read more

JavaScript LocalStorage

JavaScript LocalStorage; Through this tutorial, i am going to show you javascript localStorage & types of methods in localStorage with the help of examples. JavaScript localStorage What is LocalStorage in JavaScript? In JavaScript, localStorage is a type of web storage that allows storing data locally within the user’s browser with no expiration date for javascript sites … Read more

JavaScript Convert String to UpperCase

Convert string all characters to uppercase in javaScript; Through this tutorial, i am going to show you how to convert string all characters to uppercase in javaScript. Javascript String toUpperCase() JavaScript String toUpperCase() is a built-in method that is used to convert all string characters into uppercase characters. Syntax of javaScript string.toUpperCase() method; as shown … Read more

Javascript String ToLowerCase

JavaScript string ToLowerCase; Through this tutorial, i am going to show you how to convert string characters into lowercase using this method using javaScript ToLowerCase method. Convert String to Lowercase In javaScript JavaScript str.toLowerCase() method converts the characters of a string into lower case characters. The following syntax represents the string.toLowerCase() method: string.toLowerCase(); Explanation about the syntax; a string … Read more