PHPTutorials, PHP Articles, Learn PHP

  • Introduction to PHP in PHP
    In this Tutorial, you will learn about PHP, Definition of PHP, PHP Comparison with ASP, How to install PHP.
  • Variables in PHP in PHP
    In this tutorial, you will learn, what is variable, how to use variables in PHP, global variables.
  • Operators in PHP in PHP
    In this tutorial, you will learn how to use PHP Operators in PHP, what is purpose of operators, PHP operators are very similar in different programming languages like C++, JavaScript, Java. Operator is a symbol that is used to perform any operation.......
  • JavaScript Operators in PHP
    JavaScript operators are very similar in different programming languages like C++, PHP, Java.....
  • Conditional Statements in PHP
    Conditional statements are most often used to compare two or more than two value either true or false. conditional statements are used with comparison and logical operators.....
  • Loops in PHP in PHP
    This tutorial describes about loops in PHP, how to use loops in php, types of loops with examples
  • Include Files in PHP in PHP
    How to include files in PHP, Advantages of file inclusion, why we use include() function...
  • Functions in PHP in PHP
    This tutorial is about predefined and user-defined functions, How to make a function in PHP? why use functions in PHP?
  • Arrays in PHP in PHP
    In this tutorial you will learn about Arrays in PHP, What is array? why we use array? types of array
  • PHP Forms in PHP
    This tutorial describes about how to use forms in PHP, Why we use forms, Form are great way with user interaction, using forms user can send and gather information.......
  • Working with files in PHP in PHP
    How to open and close a file in PHP, how to read content in a file using php, how to delete a file in php? how to copy or move a file in php...
  • Email in PHP in PHP
    In this tutorial, we will learn how to send email in PHP, how to send HTML email using php. PHP has a very useful built-in function called mail(), which is used to send email......
  • Cookies in PHP in PHP
    What is cookie, how to use cookies in php? The main purpose of cookie to identify a user. A Cookie is a small pieces of information that are stored in your web browser......
  • Sessions in PHP in PHP
    How to use sessions in php, Sessions are great way for storing temporary data about your visitors.....
  • How to Make Your Own PHP Template in PHP
    A PHP template can seperate your php and html, it is an easy way too create big sites without much hassle in maintaining a consistent look
  • PHP Login and Login Script in PHP
    Now we will Create a simple script for Login and Logout form with php, mysql using with a SESSION variable. This file contains Login form, Login authorize script and Logout program.
  • Form Validation in PHP in PHP
    Today we will make an application that will check your form empty values.
  • Email Validation in PHP in PHP
    When you register on at a website, the site normally checks if the e-mail address that you enter is in a valid format. This is done by using what called a Regular Expression. What we need to do is check if a string (eg $email) matches the regular expression:
  • PHP Email Form with Captcha in PHP
    In this tutorials, we will create a email form with captcha using php, mysql. This script contains 3 php files and 1 image
  • Simple PHP Paging in PHP
    Its possible that your SQL SELECT statement query may result into thausand of records. But its is not good idea to display all the results on one page because your page will load very slow. So we can divide this result into many pages as per requirement.
  • Multiple Columns in PHP in PHP
    This tutorial displays the results of a MySQL search in x number of columns in a table.
  • Determine a File Extension Using PHP in PHP
    There are several mehods to get file extension using PHP. First is using the combination of strrpos() and substr() function like this :
  • PHP Global Variables in PHP
    Global Variables can be accessed in anywhere in program. These can be called or used across the process or sub process that is with in the program. Global variables can be overridden at runtime.
  • Reading a Remote file using PHP in PHP
    There are several way to read a remote file from php but we will discuss 3 ways:
  • Get Image Height Width using PHP in PHP
    The getimagesize() function will determine the size of any given image file including flash file(swf) and return the dimensions along with the file type and a height/width text string to be used inside a normal HTML IMG tag and the correspondant HTTP content type.
12