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 trialKevin Parine
2,402 PointsGet command
Help, do not understand the get command.
<?php
include ("falvor.php");
$flavor = (get_flavor); {
echo "<p>Hal's favorite flavor is $get_flavor!</p>";
}
?>
1 Answer
Felipe Giovanni de Moura Santos
23,702 PointsWhat's up man...
To call a function in php we simply use the function name followed by parenthesis. get_sflavor() accepts no parameter and returns a piece of text so we can just call it like below:
$flavor = get_flavor();