PHP Tutorial Guides

Articles

description

An Overview of PHP Syntax

    This chapter will give you an idea of very basic syntax of PHP and very important to make your PHP foundation strong. Escaping to…

arrow_forward
description

Essential Web Concepts in PHP

    This session demonstrates how PHP can provide dynamic content according to browser type, randomly generated numbers or User Input. It…

arrow_forward
description

Exploring PHP Functions

    PHP functions are similar to other programming languages. A function is a piece of code which takes one more input in the form of…

arrow_forward
description

Exploring PHP Loop Types

    Loops in PHP are used to execute the same block of code a specified number of times. PHP supports following four loop types. for…

arrow_forward
description

Exploring PHP Operator Types

    What is Operator? Simple answer can be given using expression 4 + 5 is equal to 9. Here 4 and 5 are called operands and + is called…

arrow_forward
description

Exploring PHP Variable Types

    The main way to store information in the middle of a PHP program is by using a variable. Here are the most important things to know…

arrow_forward
description

Exploring PHP's GET and POST Methods

    There are two ways the browser client can send information to the web server. The GET Method The POST Method Before the…

arrow_forward
description

Handling File Uploads in PHP

    A PHP script can be used with a HTML form to allow users to upload files to the server. Initially files are uploaded into a temporary…

arrow_forward
description

Managing Cookies in PHP

    Cookies are text files stored on the client computer and they are kept of use tracking purpose. PHP transparently supports HTTP…

arrow_forward
description

Managing Sessions in PHP

  An alternative way to make data accessible across the various pages of an entire website is to use a PHP Session. A session creates a…

arrow_forward
description

Manipulating Strings in PHP

    They are sequences of characters, like "PHP supports string operations". NOTE − Built-in string functions is given in function…

arrow_forward
description

Mastering PHP Arrays

    An array is a data structure that stores one or more similar type of values in a single value. For example if you want to store 100…

arrow_forward
description

PHP Coding Standards: Best Practices and Guidelines

  Every company follows a different coding standard based on their best practices. Coding standard is required because there may be many…

arrow_forward
description

Sending Emails with PHP: A Step-by-Step Guide

    PHP must be configured correctly in the php.ini file with the details of how your system sends email. Open php.ini file available in…

arrow_forward
description

Top 5 Plugins for WordPress Site Security in 2024: Pros, Cons, and Real-World Use Cases

With WordPress powering over 40% of all websites, it’s a prime target for cyber threats. From malware and brute-force attacks to data…

arrow_forward
description

Understanding PHP Constant Types

    A constant is a name or an identifier for a simple value. A constant value cannot change during the execution of the script. By…

arrow_forward
description

Understanding PHP File Inclusion

    You can include the content of a PHP file into another PHP file before the server executes it. There are two PHP functions which can…

arrow_forward
description

Working with Files and Input/Output in PHP

    This chapter will explain following functions related to files − Opening a file Reading a file Writing a file Closing a file…

arrow_forward
description

etting Up Your PHP Development Environment

    In order to develop and run PHP Web pages three vital components need to be installed on your computer system. Web Server − PHP…

arrow_forward
arrow_back « Back