Category: PHP Tutorials

Learn PHP for website development.

PHP File Upload

PHP File Upload In PHP file upload concept used to upload files to the server. we need to upload file in web application such as…

Continue Reading PHP File Upload

PHP file_exists(), filesize() and realpath() functions

PHP file_exists(), filesize() and realpath() file handling In this php tutorial we will learn how use file_exists() function, filesize() function and realpath() function with php…

Continue Reading PHP file_exists(), filesize() and realpath() functions

PHP copy(), rename() and unlink() functions

 PHP copy(), rename() and unlink() file handling In this php tutorial we will learn how use copy() function, rename() function and unlink() function with php…

Continue Reading PHP copy(), rename() and unlink() functions

PHP fgets, fgetc and feof functions

PHP fgets(), fgetc() and feof() file handling In this php tutorial we will learn how use fgets() function, fgetc() function and feof() function with php…

Continue Reading PHP fgets, fgetc and feof functions

PHP open file and read file

PHP File Open and Read In this php tutorial we will learn how to open file , read file and close file using file handling…

Continue Reading PHP open file and read file

PHP create file and write file

PHP File Create and Write In this PHP tutorial we will learn how to create a file and how to write to a file on…

Continue Reading PHP create file and write file

PHP file handling functions

PHP File Handling File handling is an important part of all type of PHP web application. PHP has in-built file system function to access and…

Continue Reading PHP file handling functions

PHP file include() and require() function

PHP File Inclusion PHP has two function which can used to include one PHP file into another PHP file before the server executes it. The…

Continue Reading PHP file include() and require() function

PHP getdate() function

PHP getdate() function The PHP getdate() function is used to returns date time. The getdate() function return an array with all the date and time…

Continue Reading PHP getdate() function

PHP date and time date() function

PHP Date and Time The date and time values are very important in any programming language. In this PHP tutorial we will discuss some ready…

Continue Reading PHP date and time date() function

PHP Sessions Example

PHP Sessions Example Previous PHP tutorial we learnt about session how to create a session, retrieve session and destroy session. In this PHP tutorial we…

Continue Reading PHP Sessions Example

PHP Cookies Example

PHP Cookies Example In previous php tutorial we understood what is cookies and how to create, retrieve and destroy cookies in php. Now, in this…

Continue Reading PHP Cookies Example