Variables are containers for your data. For example, I can say that the variable $student is set equal to "Julio Garcia."
$student="Julio Garcia";
I can then tell PHP to print($student); and PHP will print: Julio Garcia.
print($student);
For example: print.php