What is a cookie Cookies are used to store the information of a web page in a remote browser so that when the same user […]
Read MoreAuthor: Saloni Gavade
PHP Date & Time
The PHP date() function is used to format a date and/or a time. Syntax: <?php date(format,[timestamp]); ?> Here, “date(…)” is the function that returns the […]
Read MorePHP File Handling
When we develop a web application using PHP, quite often we need to work with external files, like reading data from a file or maybe […]
Read MorePHP File Upload
PHP File Upload- In this tutorial, we will learn how to upload files on a remote server using a simple HTML form and PHP. You […]
Read MoreArrays in PHP
An array is a special type of variable that can hold many values at once, all accessible via a single variable name. Arrays are very […]
Read More