Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMartina Carrington
15,754 PointsTo create a constant in PHP, you use the ( ) command.?
i am having problem trying to figure it out
1 Answer
Mark Railton
8,468 PointsTo create a constant you use the define() function, for example, to create a constant of MESSAGE with the content of Hello World you would use it like define('MESSAGE', 'Hello world!');
Then, when calling the constant you simply call the name of the constant (in all caps) without any other operators, ie to echo it, you would simply use echo MESSAGE;
Martina Carrington
15,754 PointsMartina Carrington
15,754 PointsThanks Mark Railton :D .