Posts from PHP

Check internet connection in PHP

By Ujwal Kumar Sahoo

In this article, we will discuss various methods in PHP to check the internet is present or not. We are going to create the scripts using predefined as well as user-defined methods.... Read More

Compress and create a zip file in PHP

By Ujwal Kumar Sahoo

In this article, we will discuss how to create a zip file and how to compress data items in it. Firstly, we have to understand what exactly a zip file is. What is a zip file? A zi.... Read More

PHP Sessions

By Sanketh

Hey Guys, In this PHP tutorial, you are going to learn about creating and using sessions in PHP. Sessions are one of the ways to create common data which can be used on any page of.... Read More

Program to verify whether given number is prime or not using PHP

By Sanketh

In this PHP tutorial, you are going to learn about what is prime number and how to write PHP program to verify whether the given number is prime or not. To check given number is pr.... Read More

PHP if Statement

By Sanketh

Hey Guys, In this PHP tutorial, we are going to discuss if statement in PHP. And how we will use this statement in PHP. Before going to know about if statement lets discuss conditi.... Read More

How to generate random string in PHP?

By Ujwal Kumar Sahoo

In this article, we will cover how to generate random string in PHP and it’s application in various fields. Create random strings for a fixed length In this section, we will .... Read More

What are Variable Variables in PHP?

By Ujwal Kumar Sahoo

In this article, we will learn how PHP dynamically declares a variable. That is reference variable also known as Variable Variables in PHP. PHP allows the programmer to create and .... Read More

How to read and write in files using PHP

By Ujwal Kumar Sahoo

In this article, we will learn how to read and write in the file. There are 3 simple steps to do file operation : Open a file in the proper mode. Read/write contents in file. Close.... Read More

Related Posts