MySQL Workbench Cannot Connect to Database Server -‘caching_sha2_password’ cannot be loaded
In this video I have shown how we can overcome the below error on connecting MySQL work bench. MySQL WorkBench Cannot Connect to Database Server- Your connection attempt failed for user ‘root’ from your hest to server at localhcst:3306: Authentication plugin ‘caching_sha2_password’ cannot be loaded: The specified module could not be found. Please: 1 Check …
Javascript Jquery-Autocomplete textbox from values from database
In this video I have shown how we can enable auto suggestions for a textbox from MySql database. I have shown the example in PHP as front end. In the example the HTML form is created in index.php page, and the text box is internally calling the help of search.php to populate the auto suggestions. …
jQuery Ajax GET and POST Requests Examples
In this video I have shown step by step how you can create a GET and POST request forms with PHP front end page. So the php pages and the js file needed are below shown, You can download the js file herejquery.min.js.rar index.php with form to send GET Request to page the page get.php …
Javascript Form Validation-Mobile Number,Email HTML
In this video I have shown how you can validate a simple HTML form using javascript with the help of PHP front end. The form is with email and mobile validation also. The PHP page is run with the help of XAMPP Server. Please go to my videos to get how to install XAMPP server …
Java program to Convert JSON to XML
In the video I have shown you step by step, How you can code a simple java program that can convert JSON to XML. You need to import jar file to classpath in eclipse. You can download the jar file here java-json.jar Source JSON example. { “glossary”: { “title”: “example glossary”, “GlossDiv”: { “title”: “S”, …
Integrate Login with Facebook using Javascript
In this video I have shown how to integrate login in web applications using Javascript. This example project is run on PHP as front end. I used XAMMP serve for testing. 1. First create a APP in facebook developer site. https://developers.facebook.com/ 2. Get your APP id from the app. 3. Update your APP id in …
Simple JAVA program to download Youtube vidoes
Using the below simple java program you can download Youtube videos. We have to download an executable exe file from below link or their website. Download youtube-dl here. youtube-dl.rar Download this exe file and keep in the folder where you need to have your downloaded videos. 1. Project Structure in Eclipse IDE. 2. my_main.java package …
Download Youtube Videos using Command Prompt CMD
Now you can download youtube videos using command line commands. This will work in any platform like unix, linux and windows. To demonstrate the downloader in windows we have to download an executable exe file from below link or their website. Download youtube-dl here. youtube-dl.rar Steps to Download youtube Videos 1. Download the youtube-dl and …
Read Outlook .msg file using JAVA
In this video I have shown how you can read .msg file using java. This example is shown in Eclipse IDE. 1. Project Structure. 2. 3 Jar files are required for this project. These jar files should be added to class path of the project. poi-scratchpad-3.9.jar msgparser-1.1.15.jar poi-3.9.jar 3. Read_MSG.java package com.chillyfacts.com; import java.util.Iterator; import …
Java JSP Javascript – Submit form without reloading page
In this video I have shown how to submit a form from a JSP page without refreshing the page. This is purely on Javascript and will work on any HTML supported platforms like PHP, .Net etc. This project is demonstrated in Eclipse IDE with Tomcat server. 1. Project Structure in Eclipse IDE. 2. index.jsp holds …