PHP Introduction

This section explains how to use PHP from the basics for people who have never programmed before. First, it is enough to know the basics of the web and HTML.
PHP Introduction | Control Structures
- PHP Introduction | Control Statements | Conditional Branching with if
- PHP Introduction | Control Statements | Multiple Branches with switch
- PHP Introduction | Control Structures | while and do while Statements
- PHP Introduction | Control Structures | Complex Repetition with for Statements
- PHP Introduction | Control Structures | Repeating Arrays with foreach Statements
PHP Introduction | Form Submission Basics
- PHP Introduction | Form Submission Basics | Sending a Form
- PHP Introduction | Form Submission Basics | The First Step in Security Measures: XSS Defense
- PHP Introduction | Form Submission Basics | Using Other Form Elements
- PHP Introduction | Form Submission Basics | Selecting Multiple Items in a select List
PHP Introduction | Using Text Files
- PHP Introduction | Using Text Files | Loading a Text File with readfile
- PHP Introduction | Using Text Files | Processing File Text Line by Line with file
- PHP Introduction | Using Text Files | Splitting and Processing Text (explode, implode)
- PHP Introduction | Using Text Files | File Access with fopen
- PHP Introduction | Using Text Files | Loading a File with fgets
- PHP Introduction | Using Text Files | Saving Files with fputs
- PHP Introduction | Using Text Files | You Can Also Read Files on the Internet?
PHP Introduction | Page Transitions, Cookies, and Sessions
- PHP Introduction | Page Transitions, Cookies, and Sessions | HTTP Headers and Page Navigation
- PHP Introduction | Page Transitions, Cookies, and Sessions | Basics of Using Cookies
- PHP Introduction | Page Transitions, Cookies, and Sessions | What is a Session?
- PHP Introduction | Page Transitions, Cookies, and Sessions | Login Using Sessions
PHP Introduction | Structures and Object Orientation
- PHP Introduction | Structure and Object Orientation | Structuring with Functions
- PHP Introduction | Structure and Object Orientation | What Is Object Orientation?
- PHP Introduction | Structure and Object Orientation | Let's Create a Class
- PHP Introduction | Structure and Object Orientation | Extending Features Through Inheritance
- PHP Introduction | Structure and Object Orientation | Class Methods and Class Fields
- PHP Introduction | Structure and Object Orientation | Why Is Object Orientation Necessary?
PHP Introduction | Database Access Using PDO
- PHP Introduction | Database Access with PDO | What is PDO for Database Access?
- PHP Introduction | Database Access Using PDO | Creating a Table in MySQL
- PHP Introduction | Database Access with PDO | Creating a PDO Object
- PHP Introduction | Database Access Using PDO | Listing Table Data with PDO
- PHP Introduction | Database Access Using PDO | Adding Table Data with PDO
- PHP Introduction | Database Access Using PDO | Searching Table Data with PDO
- PHP Introduction | Database Access with PDO | Deleting and Updating Table Data with PDO
PHP Introduction | Functions
- PHP Introduction | Functions | empty - Check Whether a Variable Is Empty
- PHP Introduction | Functions | isset - Check Whether a Variable Is Set
- PHP Introduction | Functions | phpinfo - Checking PHP Information and Settings
- PHP Introduction | Functions | phpversion - Check the PHP Version
- PHP Introduction | Functions | var_dump - Output Variable Information