Variables and Constant in PHP
In any Programming language variables are used to store data for temporary period or scope. In php variables are named with $ sign. In PHP
From Basic to the Best
In any Programming language variables are used to store data for temporary period or scope. In php variables are named with $ sign. In PHP
Scope of the variables is like from where value of any variable can be accessed. Scope of any variable is depends on how and where
Whenever you want to store some temporary data, then variables are used, like x=20, area=7.3. Here x and area are variable names. In C language