wilfordbrimley:
It is not real clear what you are talking about.
All variables in PHP start with the $ sign.
So if you are looking at some PHP script and see something like $MyVar, that means that $MyVar is the name of a variable.
Does this answer your question?
Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case-sensitive.
Maybe the following example will help.
<?php
$var = 'Bob';
$Var = 'Joe';
echo "$var, $Var"; // outputs "Bob, Joe"
$4site = 'not yet'; // invalid; starts with a number
$_4site = 'not yet'; // valid; starts with an underscore
$täyte = 'mansikka'; // valid; 'ä' is (Extended) ASCII 228.
?>