PHP Mail & Sending Email

PHP Server mail Config In the php.ini file, PHP must be set up correctly so that your system can send emails. Open the php.ini file in the /etc/ directory and…

PHP Form Example

This chapter shows how to keep the values in the input fields when the user clicks the \"Submit\" button. PHP: Keep the Form\'s Values We put a small PHP script…

PHP Form Validation

PHP Form Validation Tutorial (Complete Guide with Examples) Welcome to phponline.in, your complete guide to mastering PHP programming. In this tutorial, you will learn PHP Form Validation in detail: Why…

Sessions in PHP

A session is a way to store data (in variables) that can be used on more than one page. The information is not stored on the user\'s computer like a…

PHP Cookies

What\'s a Cookie? Often, a cookie is used to figure out who a user is. A cookie is a small file that is put on the user\'s computer by the…

PHP Create and Write File

In this chapter, we\'ll show you how to make a file on the server and write to it. PHP Create File - fopen () A file can also be made…

PHP Opening and Closing Files

This chapter will explain how to do the following functions with files: Opening a file Reading a file Writing a file Closing a file How to Open and Close Files…

PHP File Handling

Managing files is an important part of any web app. For many tasks, you need to open and work on a file. PHP Handling Files PHP has a number of…

PHP File Include

The include (or require) statement adds all of the text, code, and markup from the given file into the file that uses the include statement. When you want to put…