As you know, the user login box of the website contains the following fields username and password. Furthermore, most of them put the
Posts Related to Visible text
Ajax login validation system in PHP using jQuery
Last time, I’ve showed you how to check user availability in Ajax using jQuery’s fading effect. But I’ve just shown the example without connecting the ...
How to Encrypt Passwords in the Database
If you are developing a password-protected web site, you have to make a decision about how to store user password information securely. What is "secure," ...
How to Connect to MySQL Database Using PHP?
<?php $username = "your_name"; $password = "your password"; $hostname = "localhost"; $dbname = "database name"; //Connection to the MySql Database $dbhandle = mysql_connect($hostname, $username, $password) ...
Blocking access to the login page after three unsuccessful login attempts
Sometimes you need to add an extra protection to password-protected website. This article explains how access to the login page can be restricted after three ...
How Can I Retrieve Values from One Database Server and Store them in Other Database Server Using PHP?
We can always fetch from one database and rewrite to another. Here is a very simple solution. 1 2 3 4 5 6 7 $db1 ...
