Welcome back to Shortlearner, today we start a new series of API configuration of Namecheap
using php, before start the tutorial first of all we should know about Namecheap.
Basically Namecheap is a platform where you can purchase all type of hosting services
(virtual private host, xen vps, ovz vps ), Dedicate servers and also buy domains with in
a cheapest price.
Today we will see how to get namecheap API.
Before getting a namecheap api first of all we should know about what is an API,
and how its work.
click to know more about API .
find ip address location .?
Welcome to shortlearner.com, in this post we will see how to find the IP address, city, browser and country of the
Visitor of your website. Before starting this tutorial I suggest you put the code into a PHP file and call this PHP file into the header file
On your website, it will help you to track the activities of user on your website.
First of all we need a database table where we store all the activity of the visitor on our website.
1 2 3 4 5 6 7 8 9 10 | CREATE TABLE visitor_details( id MEDIUMINT NOT NULL AUTO_INCREMENT, ip VARCHAR(30) NOT NULL, current_page VARCHAR(30) NOT NULL, time VARCHAR(30) NOT NULL, user_agent VARCHAR(30) NOT NULL, country VARCHAR(30) NOT NULL, city VARCHAR(30) NOT NULL, PRIMARY KEY (id) ); |
After creating table, we write a PHP script that will help us to find all the information Of visitor.
Password Validation Using JavaScript
Welcome back to shortlearner.com, in this post we will see how can we check the insert password is correct before signup with the help of JavaScript function.Most of times the user forgets the password during signup,using this system we will ensure to the user that the password entered by him/her is correct or not.In this system we will create two text boxes.
Check Email is Already Registered in Database using Ajax and JavaScript.
Hey,Welcome to shortlearner, today we will see how to check that email is already registered in database, with the use of ajax and java-script.
Most of the time we see that the user is registering same email id in database and it is registered in the database without checking that it was already registered in database.
but with the help of ajax and java-script we can show our users that their email is registered or not registered in our database by showing them a message.
Notification System Using JavaScript and Bootstrap
Welcome back to short learner , today we will see how we can make a notification system using java-script and bootstrap.
first of all you must have some basic knowledge of java script and bootstrap classes.
In this tutorial we will use some bootstrap classes for precise look of our web based notification system, and also we will use some of java script functions
to play sound.