Skip to main content

Posts

Showing posts from January, 2020

Create a Interactive website using Three js

Create a Interactive website using Three js Hi friends ,Totally we learn an basics  of three js   We will start by setting up threejs Let’s start with basic setup. We need to import  files.   threejs   Before you can use three.js, you need somewhere to display it. Save the following HTML to a file on your computer, along with a copy of threejs  in the js/ directory, and open it in your browser. so what is three js? i will be talking about creating interactive environments in three js. WebGL is a javascript api that allows you to render 3D and 2D graphics without the use of plugins and three js is an essentially an abstracted layer on top of WebGL that makes WebGL alot of easier to use. can also use the html canvas element and you can also use SVG and across a ton of browers so you don't actually have to download an application in order to experience  your full immersive environment. set...

User Account Activation using email Verification using Php

How to Create Basic User Account Activation using email Verification using Php This tutorial demonstrate to build an email verification script . Email verify is a php script that allows you to verify email address without storing anything in any databases.it will send users an email requiring them to  click a link to verify their email before  and then your account will be activated...    And then first, we need to establish a database connection and create a table to insert the account data. So let's go to PHPMyAdmin and create a new  database with the name   "dbtest"  create a user account that has access to that database in order to insert and update data. download phpmailer form an this link   PHPMailer   .. next,create a table and named as users.... Database:  create table users(userID int primay key auto_increment not null,userName varchar(30) not null,userEmail varchar(30) not null unique,userPass varchar(30)...

Image Slider Using HTML and CSS

Image Slider Using HTML and  CSS This tutorials are learn how to design slideshow using CSS.  Adding a css slideshow to the homepage can be considered as one of the best methods available out there to enhance your website design. Some people think of that as a tedious task. But tools like CSS Slider have made the things easy for all the website. You just need learn and customize according to your specific needs and requirements. index.html <!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Untitled Document</title> <link href="css/style.css" rel="stylesheet" type=...

Using jQuery to build table rows from AJAX response(json)

Using jQuery to build table rows from AJAX response(json)                                        AJAX is an acronym standing for Asynchronous JavaScript and XML and this technology helps us to load data from the server without a browser page refresh. Syntax:    [selector].load( URL, [data], [callback] ); URL:                        The request url sent to server-side and it should be  php ,jsp ,asp  script to generate data and  get from the database data:                   It should be passed parameter to specified  request like  POST  and  GET  Method. Call back:                        A callback function invoked after the...