Variables are very important in any coding language and first of all, we need to know how to name them.
The following are ways to name them:
Some of you can probably see a pattern. In fact, variables can only start with a letter or underscore and can only contain letters, numbers, and underscores and everything from start to finish is case sensitive.
Anyway, one popular way to make variables involves putting an underscore between two words. What might be the most popular style for single word variables?
The following are ways to name them:
Code:
Forum_Name = "Admin Junkies"
_1st_Member = "The Forum Founder"
ForumName = "Admin Junkies"
seo = "search engine optimization"
Jerry = "A new member"
SMF = "Simple Machines Forum"
Some of you can probably see a pattern. In fact, variables can only start with a letter or underscore and can only contain letters, numbers, and underscores and everything from start to finish is case sensitive.
Anyway, one popular way to make variables involves putting an underscore between two words. What might be the most popular style for single word variables?