ASSEMBLY LEVEL LANGUAGE

This language uses letters and symbols instead of binary digits. These symbols are called Mnemonics. programs written in assembly level languages are called assembly codes. Assembly codes are translated into machine level language instructions. Assembly level language is easier to understand than machine level language. HIGH LEVEL LANGUAGE {HLL} High level languages are easier for […]

INTRODUCTION – PROGRAMMING LANGUAGES

A person who writes a program is called a programmer. To perform any task, programmer writes the set of instructions or programs in one of the many programming languages. programming , with regard to computer is defined as a process of designing, writing , testing , debugging and documenting a program. programming languages are divided […]

COMPUTER PROGRAMMING

INTRODUCTION A program is a set of instructions, which when executed, makes the computer work in a particular manner . programs are an integral part of a computer . computer will be useless if it has no program . computer program directs a computer how to process and execute data. A program is always well […]

What’s the difference between the include() and require() functions?

Difference between include() and require() functions? This both functions help to include the content of other PHP files into another PHP file. Including files is very useful when you want to include the same PHP, HTML, or text on multiple pages of a website. include() Function While using the include() function it adds the content […]

How to create login page in PHP with MySQL database

In this tutorial, I’m going to show how to create a login page in PHP, creating a login page for beginner is a big problem. I’m trying to keep this easy so you can understand this and create your PHP project awesomely. Here is the coding for login page in PHP with step by step […]

How to POST and GET JSON Data using PHP cURL

In this PHP tutorial, I’m going to talk about how to POST and GET JSON Data using PHP cURL, the cURL library is used for sending and receiving data on the web and used by the developer for the same. And if you are working on the rich application then often need to post and get […]

Get information about your memory and CPU usage in PHP

In this tutorial, I am going to share how you can get information about your memory and CPU usage in PHP, optimizing server memory is a big problem and you may have to face server downtime issues. PHP has a garbage collector and a pretty complex memory manager. The amount of memory being used by […]