Constants in PHP!
My name is Freddie.
I am 22 years old.
Explanation
Constants are values that cannot be changed once they are created. They are defined using the define() function and do not use the dollar sign like variables do. Variables can change during the program, but constants always stay the same. Constants are useful when storing values that should never be modified.