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 trialMatt Van Dyck
2,033 PointsList of preset variables and commands
In this episode, we learn that there's a php command $_POST which contains all data from form posts. We also learn that there's variables like $_POST["name"] that will just call out the name field of the form. Is there any place where we can see a full list of these preset php commands and variables to learn from?
Similarly, common CMS tools are built using PHP like Wordpress. I'm a beginner at all of this, but as I understand it Wordpress also has its own preset variables and commands. Is there anywhere to see these as well?
1 Answer
Joel Rivera
29,401 PointsFor PHP this is the best resource you can use. http://www.php.net/manual/en/ Bookmark that link and make it your reference of choice.
Good Luck.