0% found this document useful (0 votes)
40 views

Tutorials - Online Tutorial First PHP Code

This document provides a list of PHP tutorials covering basic syntax, arrays, forms, dates, server-side includes, sessions, email, and form validation. Key topics include using the include() and require() functions to insert file content, storing variables in sessions, and sending emails with PHP forms that include validation of user input.

Uploaded by

Muhammad Junaid
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views

Tutorials - Online Tutorial First PHP Code

This document provides a list of PHP tutorials covering basic syntax, arrays, forms, dates, server-side includes, sessions, email, and form validation. Key topics include using the include() and require() functions to insert file content, storing variables in sessions, and sending emails with PHP forms that include validation of user input.

Uploaded by

Muhammad Junaid
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Tutorials

http://www.w3schools.com/php/php_syntax.asp - Online tutorial


First PHP Code

The Switch Statement

PHP Arrays

PHP Forms and User Input

Advanced Tutorial
Date Function

Server side includes


You can insert the content of a file into a PHP file before the server executes it, with the include() or
require() function. The two functions are identical in every way, except how they handle errors. The
include() function generates a warning (but the script will continue execution) while the require()
function generates a fatal error (and the script execution will stop after the error).

Include() function

Storing a Session Variable

Sending an email in PHP

Email form

Email form validation

You might also like