For PHP development XAMPP is the most necessary open-source software. It gives an environment where you get PHP and MySQL together in one place. The XAMPP provides the PHP configuration as well. So, you can manage the php.ini configuration file from there. If you don’t want to go with this, you must have to install […]
How to Install and Configure PHP in MacOS With Apache
In order to work on any PHP web based application, you will need to install it first. In Windows it is easy to install and configure. But if we talk about the Linux or Mac platform then the installation steps are totally different. We already covered up the LAMP stack setup for Ubuntu platform. Today, […]
Encrypt Form Data in JavaScript Before Sending to Server
While submitting the form data from the client-side to the server-side the data is visible in the network tab. For the development end, there is nothing to worry about it. But when you are in production mode, you always think about the security things. Obviously, it is thinkable because data is a big asset nowadays. […]
CRUD Application in PHP 8 Using Prepared Statement
Security is a measured challenge while creating an application in PHP. The raw SQL query in PHP can be injected through a malicious function. This may affect your entire functionality. Even you can lose your database or particular table and even any record. Due to the SQL injection, the vulnerable code or script can be […]
What is SQL Injection and How to Prevent it in PHP
Do you think your SQL database is secure from instant destruction? Yes, instant destruction because I am talking about SQL injection. It is a combination of two words that is: SQL + injection. Here, the injection doesn’t mean the medical terminology. You always have to take care of the SQL injection In PHP while writing […]
How to Install LAMP Stack in Ubuntu 20.04 LTS
If you want to work on the Linux environment, you will have to be familiar with the command line. If you are a PHP Developer and prefer to go with Linux OS, you will have to opt for LAMP Stack. But, If you are an absolute beginner, then there might be questions like What is […]
How to Download and Install WordPress in Localhost
WordPress is a dominant CMS (content management system) that is designed to manage the contents. Due to its feature, WordPress is becoming more trendy these days. So, through this post, I will be diving you in WordPress development. That’s why I am going to start with the scrape. Hence, before starting with the development, we’ll […]
Check Email Available in PHP MySQL Using jQuery and Ajax
Email availability checking is not a difficult task in PHP if you are using Ajax. Yes, this is absolutely right. Using ajax and jQuery, we can check if email exists in the database while creating an account with email. That means the email that is going to be saved in the database is already exists. […]
How to Implement jQuery Datatable in PHP with MySQL
jQuery provides a very powerful feature which is called datatable. The datatable is an open-source plugin provided by the jQuery. Basically, in a bootstrap table or HTML table, there is no option to sort the data according to the column. No search option and no other options. Simply the table is used to display the […]
PHP Import CSV File Data into MySQL Database with Preview
We can import the CSV files in PHP and store it into the database. The CSV (Comma-Separated Value) data can be imported easily using PHP Import CSV procedure. When we have a bunch of data to insert it into the database, then, in that case, inserting records one by one is very time-consuming. So to […]