Hide .php extensions, Custom url for PHP pages with parameters, htaccess

In this video I have shown how you can have custom URL for you PHP web site. It is done by htaccess file, Please note that htaccess file should be created in ROOT folder of your project. 1. Project files Web pages 2. index.php <a href=”index.php”>INDEX</a> | <a href=”ABOUT”>ABOUT</a> | <a href=”PRODUCT”>PRODUCT</a> | <a href=”CONTACT”>CONTACT</a> …

Continue reading

How to load images dynamically (or lazily) when users scrolls them into view

In this video I have shown how to load images lazily when user scrolls into the view of page. This is the basic method all online shopping websites are using. Source Code. <html> <head> <script src=”https://cdn.jsdelivr.net/npm/lazyload@2.0.0-beta.2/lazyload.js”></script> <script> window.addEventListener(“load”, function(event) { lazyload(); }); </script> </head> <body> <img class=”lazyload” src=”load.gif” data-src=”img/1.jpg” width=”765″ height=”574″ /> <img class=”lazyload” src=”load.gif” …

Continue reading

Best Syntax Highlighter Plugin for WordPress Website

In this video I have shown the best and useful plugin which can be used to beautify your source code. This plugin can support almost all the languages, Here is the list of languages it supports. 1. Default Language (one size fits all, highlights generic code) 2. C1 (thanks to Oparin Pavel) 3. ABAP 4. …

Continue reading

Add CSS to JAVA JSP MYSQL project

In this video I have shown how to add CSS in a JAVA JSP project. Download the Project the CSS added here Login_Project.zip Download the Project without CSS Login_Project Watch from beginning all the step by step how you can create this Login Project Java Jsp MySql login Project Part 1 https://www.youtube.com/watch?v=rC1kZewgb94 JSP login Form …

Continue reading

Linkedin Share button using Plugins – HTML

In this video I have shown how to create the LinkedIn share button in Webpages. This source code will work in all programming languages that supports HTML front end. Copy paste below source code to the page you need to get the sharer. Update the link with the page link you need to get the …

Continue reading

Dynamic Facebook share button in PHP

In this video I have shown how to create dynamic facebook share button. Usually we copy paste the URL in the share code generator and get the code for each page manually. visit the below page for manually generating the code sharer. Create Facebook Share button for Website Webpages Now just copy the below code …

Continue reading

Dynamic Facebook Share button for Website Webpages

In this video I am showing how to use dynamic share button in webpages. Normally it is done by pasting the URL in to the tools so it will generate the code for sharer automatically. Check the video below how to do that. Create Facebook Share button for Website Webpages https://www.youtube.com/watch?v=6W-JR0yFyX4 But if you are …

Continue reading

recaptcha to download a file HTML

This tutorial shows how to integrate reCaptcha for download a file. This is HTML example and will work for all programming languages. Please note that this example will run in server after updating the site information in recaptcha site as shown in the youtube video. First get the site key from google recaptcha site. Please …

Continue reading

Get IP address Location of Client/User JAVA web project

This project shows how to take IP address of user in your Web Project. And you can use the IP address to predict the location where they are using. Update the Key after registering in the website https://ipinfodb.com/ Get_Location_From_IP.java package Modal; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; public class Get_Location_From_IP { public Location_Use_Bean get_ip_Details(String ip) …

Continue reading

Add reCaptcha I m not a robot in JAVA JSF Websites

This tutorial shows step by step how to include reCaptcha I m not a robot in JAVA JSF Websites. First you have to register with Google recaptcha and get the Site Key and Secret Key. Visit this link to get the step by step process. https://chillyfacts.com/add-recaptcha-i-m-not-a-robot-in-java-websites/ After Registering new site, You will get a Site …

Continue reading