Get Gravatar Image using PHP, We can get this by simply generating gravatar URL with email id. Then use this URL in image source attribute to display gravatar image in the browser. First of all, store email address in a variable. Remove any spaces in email address using trim PHP function. And convert all the […]
Continue readingThis is simple and powerful CAPTCHA script, using this script I’m going to generate a random number and then creates an image. If the user submits the form with correct captcha value, then you can proceed with next statements like inserting data into the database or sending an email. 5 Steps to Add “No CAPTCHA […]
Continue readingIf you want to add google new reCAPTCHA (I’m not a robot). This captcha system is used to stop spam registrations or inquiry submissions. You can integrate this “No Captcha reCaptcha” in your website by following these simple steps. First of all create the google reCAPTCHA access credentials, After getting site key & secret key […]
Continue readingThis is simple PHP WHOIS script that you can understand easily. You can add advanced features to this script. This is a simple php whois script that can be easily understood. Here in this script I’ll be using only one server that is of .com domain. You can use different whois servers, I’ve provided the […]
Continue readingThis is simple PHP Contact Form to send E-Mail through your website’s contact page. First, we should have an HTML form to collect data from users. And this data should be sent to PHP for sending email. This form should contain these elements, you can add more input fields also based on your requirement. I’m […]
Continue readingThis is a simple File Upload Script in PHP & MySQL, uploading file into the server and also inserting uploaded file information into the database. And also we are writing validations for uploading file with size restrictions & file extension validation. Here I’m using Image format restriction, you can use any file type you want […]
Continue readingThis is a Simple User Registration Script in PHP and MySQL. By using this user can easily register, filling username, email, password fields. After submitting form, the data will be stored in a database table. So that next time user can login with the login credentials which are used while user registration. Here these are […]
Continue readingThis is a Simple to Advanced Login Script System using PHP and MySQL. In this script, a form will be displayed with two fields, username, and password. When the user is submitting with valid username and password, then he can access authenticated page. Otherwise, users again have to fill in the form. This is a […]
Continue readingSend Forgotten (Reset) Password by mail using PHP and MySql is a simple script to send the password to user email, if the user forgets their password. They will fill in E-mail or username, if the e-mail or username matches in our database value, then the password will be delivered to user email id. forgot […]
Continue readingHow to generate a PHP Random Number? This is simple tutorial to generate random number in php using PHP rand function. This PHP rand function can be used to generate a random number from a minimum and maximum number limit or we can generate a complete random number. Here is the syntax of PHP rand […]
Continue reading