PHP

Variables in PHP


PHP variables, variable restriction, use of $this

Variables example

Examples of variables in PHP, they need to start with a letter or an underscore

<?php

// Variables need to start with a letter or underscore


// $this is for object oriented PHP

$initial_value= 0;

$_this = 1;

$_variable1= 0;

$_1variable = 1;