PHP Session

In this PHP tutorial we will see how to start Session in PHP. PHP Session A session is a process to store information (in variables) and further to be used this information across multiple pages. Beside in session, the information is not stored on the user’s computer,...

PHP Cookies

In this tutorial, we will see how to store a minimum amount of data within the user’s browser itself using the PHP cookies. What is a Cookie? A cookie is a small text file that lets you store a small amount of information (nearly 4KB) on the user’s...

PHP Include Files

In this tutorial, we will see how to include one PHP file into another PHP file. The PHP include() and PHP require() statement allow you to include the content of one PHP file into another PHP file. You can save your time and work using the PHP include() and PHP...

PHP File Upload

In this tutorial we will see how to to upload files to the server. Steps for Uploading PHP File Upload PHP file upload features allows you to upload any kind of file like images, videos, ZIP files, Microsoft Office documents, PDFs, as well as executable files and a...

PHP Date and Time

In this PHP tutorial we will see how to format the date and time. The PHP Date() Function The PHP Date() function is used to formats a timestamp to a more readable date and time. The computer stores dates and times in a format called UNIX Timestamp, which measures...

PHP Loops

PHP Loops Loops are used to execute a block of statements, multiple times until and unless a specific condition is fulfilled. The basic idea behind a loop to helps the user to save both time and effort of repetitive tasks multiple times. PHP supports four different...

Pin It on Pinterest