PHP Variable Introduction VariablesA variable is an area of memory which is set aside to store information , this is assigned an identifier by the programmer . You can recognise variables in PHP because they are prefixed with the dollar ( $ ) sign . To assign a variable you use the assignment operator ( = ) . Here is an example of this.$name = "shedboy"; $intDaysInWeek = 7;In the first example the variable identifier in...... Similar Editorial : Variable Data Printing by Printing Guy. | Source : Compile C#