How to check supported RAM type in Linux System

Here we see How to check supported RAM type in Linux System? Programming languages that are useful to hackers  RAM is a common computing acronym that stands for random-access memory. Sometimes it’s called PC memory or just memory. In essence, RAM is your computer or laptop’s short-term memory. It’s where the data stored that your computer … Read more

MySQL update table based on value of another table Join

While working on MySQL, sometimes we need to update the table values based on the values of another table. In this case, we can update the table value by joining from another table. MySQL table join Here, I have done this as follows: For example, we need to update the value to table2 from the … Read more

How to check the Public IP: Mera Wala IP

Working on the internet or in general troubleshooting, we wanted to know the IP address, But you know how to check the IP public address. What is IP Address and MAC Address Here, we will show how to check the IP address from MeraWalaIP.com: How to check the Public IP merawalaip.com : You can check … Read more

How to fix WordPress 404 Errors, requested URL was not found on this server: Home Page works

We often find the issue of the WordPress page not found 404 error when we move the WordPress to another new server. Here will see how to fix the issue.How to install WordPress.com desktop app on Ubuntu Error: The requested URL was not found on this server. There could be multiple solutions you can find … Read more

How to create a data table in bootstrap PHP and MySQL ?

What is Bootstrap Bootstrap is the most popular HTML, CSS and JavaScript framework for developing a responsive and mobile friendly website .  Bootstrap helps web developers build website faster as they don’t need to worry about basic commands and functions. Bootstrap became popular very quickly, and not without reason. Web designers and web developer like bootstrap because it … Read more

How to DELETE Data Into MySQL Database Using PHP ?

The DELETE statement is used to delete records from a table. you can delete records from a table using the SQL DELETE statement. It is typically used in conjugation with the WHERE clause to delete only those records that matches specific criteria or condition. Syntax : DELETE FROM table_nameWHERE some_column = some_value ; Implementation of the Delete Query … Read more

How to Create MySQL user and Grant permission ?

Introduction : MySQL is the most popular Open Source Relational SQL database management system. MySQL is one of the best RDBMS being used for developing web-based software applications.  It is commonly deployed as part of the LAMP stack (which stands for Linux, Apache, MySQL, and PHP) and, as of this writing, is the most popular open-source database in the world. Prerequisites : A Linux … Read more