Variables in php

Variables in PHP are identifiers prefixed with a dollar sign ($). For example: $name$Age$_debugging$MAXIMUM_IMPACT A variable may hold a value of any type. There is no compile-time or runtime type checking on variables. You can replace a variable’s value with another of a different type: $what = “Fred”;$what = 35;$what = array(“Fred”, 35, “Wilma”); There … Read more