PHP Use bcrypt for storing passwords in PHP 25th November 2018 In this blog, you will learn how to encrypt the password using bcrypt password hash method. Always Use bcrypt for storing passwords in PHP it’s encrypted and safe. bcrypt is a password…
PHP Delete an element from an array in PHP 25th November 2018 You can delete an element from an array in PHP using several array manipulation functions. The approach you choose depends on whether you want to preserve the keys or re-index…
JQuery Learn How to Use jQuery to Identify the Selected Radio Button 24th November 2018 You can use the `:checked` selector if you to use jQuery to identify the selected Radio Button . This selector allows you to target the checked radio button in a…
PHP How to generate random text using both letters and numbers 24th November 2018 To generate random text using both letters and numbers, you can use PHP to create a custom function that combines random characters from both sets. Here’s an example of how…
PHP PHP Code to get Mac Address of Client 24th November 2018 Using PHP code to get MAC address of client from the server-side is not directly possible due to security restrictions. The MAC address is a client-side information and is not…
PHP How to Download MySQL Database Backup with PHP Code 24th November 2018 To download MySQL database backup with PHP code, you can follow these steps: 1. Connect to the MySQL database: First, you need to establish a connection to your MySQL database…
PHP Securing PHP Page Access: Prevent Direct Entry, Allow Access Only via Redirection 23rd November 2018 For securing PHP Page Access and to prevent direct entry, and to allow access only via redirection, you can follow these steps: 1. Define a constant or variable in your…
Javascript How to get selected radio button value in Javascript 23rd November 2018 To get the selected radio button value using JavaScript, you can follow these steps: 1. HTML Setup: First, create an HTML form with radio buttons. Each radio button should have…