Copy Mysql database from one server to another server
This tutorial shows how to transfer Mysql Database from one server to another server without any software. In this tutorial we are transferring our Local host server database to a server located remotely hosted in freemysqlhosting.net. Click here to see how you can register free to get remote MySql database online. The image below shows my …
Add reCaptcha I m not a robot in JAVA websites
This tutorial shows how to add reCaptcha I m not robot in Websites using Servlet in JAVA and JSON. First login to google and go to the link https://www.google.com/recaptcha/admin#list You can see the Register a new site form as below. 2.1 Fill any Label 2.1 Enter your host name, Now I am giving domain name …
Create Facebook Share button for Website Webpages
This tutorial helps to create facebook share button in Webpage. 1. Just include the following code in your Webpage to include web page sharer. You can update the code with your link inside and create it for your webpage. 1.1 Button Count Type <iframe src=”https://www.facebook.com/plugins/share_button.php?href=https://chillyfacts.com/create-facebook-share-button-for-website-webpages/&layout=button_count&size=large&mobile_iframe=true&width=83&height=28&appId” width=”83″ height=”28″ style=”border:none;overflow:hidden” scrolling=”no” frameborder=”0″ allowTransparency=”true”></iframe> 1.2 Box Count Type …
Integrate login with Facebook using JAVA
This tutorial helps you to integrate Facebook login in Java websites with the help of JAVASCRIPT. This is the simplest way I have found to do it. First register in https://developers.facebook.com/ and get the app ID for your APP. 1.1 Login first to the Developer site with your facebook ID and Click on Add a New App …
Free Mysql Database Online – Free Mysql Remote Hosting
This tutorial shows step by step process for having remote MySql database which can be used in Websites free of Cost. For this simply register in website https://www.freemysqlhosting.net/. We are using service from this website to take remote database online. Simply register your email id in the link below, https://www.freemysqlhosting.net/register/?action=register After Registration you will get confirmation …
Integrate login with google in Websites with JAVA
This tutorial helps you to integrate login with Google in JAVA websites. This works with the principle of oAuth2. Here is the step by step process for that, Login to the Google console API https://console.developers.google.com/apis/library Get the Client ID and Client secret, For that 1.1 After Login in Click on Credentials 1.2 Then Click on Create …
How to populate options of h:selectOneMenu from database? JAVA JSF
The Project Structure in netbeans is shown Mysql Table Structure CREATE TABLE `categories` ( `sl_no` INT(11) NOT NULL AUTO_INCREMENT, `category_name` VARCHAR(50) NOT NULL DEFAULT ‘0’, PRIMARY KEY (`sl_no`) ) MySql Table Data index.xhtml <?xml version=’1.0′ encoding=’UTF-8′ ?> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml” xmlns:h=”http://xmlns.jcp.org/jsf/html” xmlns:f=”http://xmlns.jcp.org/jsf/core”> <h:head> <title>Facelet Title</title> </h:head> <h:body> <h:form> …
Auto Back up Mysql Database without any Software
This tutorial shows how to take back up of a MySql Database without any software. This can be done by creating a scheduled task with a Bat file. Here is the Step by Step process for that. If you want to a auto back up Mysql database test_111 as shown below First we will check how …
JAVA, JSF, MySql and Hibernate Login Project
This project uses MySql as database and Hibernate for Database operations. The Project structure in Netbeans, index.xhtml <?xml version=’1.0′ encoding=’UTF-8′ ?> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml” xmlns:h=”http://xmlns.jcp.org/jsf/html”> <h:head> <title>Facelet Title</title> </h:head> <h:body> <h:form> User Name <h:inputText value=”#{login_bean.user_name}”></h:inputText><br></br> Password <h:inputSecret value=”#{login_bean.password}”></h:inputSecret><br></br> <h:commandButton action=”#{login_bean.checkuser()}” value=”Submit”></h:commandButton> </h:form> </h:body> </html> success.xhtml <?xml version=’1.0′ encoding=’UTF-8′ …
Create WhatsApp Share Button on WebSites
This tutorial shows how to create WhatsApp share button on WebPages, This example is with HTML and will work of JAVA, JSP, PHP and any HTML Support Platforms. 1. Just add the below source code in your Webpage to create a share link. You can put image also inside the href Link with a Whatsapp …