Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ezra John Alvarez
557 PointsWhat if I dont want to provide value of the first variable?
<?php
function get_info($name = 'friend', $title){ echo "Hi $name, are you a $title?"; }
get_info('','Developer');
?>
Why does this code doesnt work? What im trying to do here is only provide the value of the $title..
2 Answers

Cosmin Cioaclă
21,339 PointsHi Ezra,
It seems that the way to make this work is to change the order of you variables. You should not set a default for the first argument, but for the second. More info can be found here, example #5.
Hope that helps, Cosmin

Philip G
14,600 PointsHi John,
you have to provide the variable in the function. Why do you use a variable instead of text?
This code should work for you:
<?php
function get_info($title){
$name = 'friend';
echo "Hi $name, are you a $title?"; }
get_info('Developer');
?>
Ezra John Alvarez
557 PointsEzra John Alvarez
557 PointsHi Cosmin, so basically, you can only add default value to the last argument or add default value for both but not for the first argument only..
Illustration:
1: ($a, $b = 'default b value') = Correct
2 ($a = 'default a value', $b = 'default b value') = Correct
3 ($a = 'default a value', $b) = Incorrect
Is this correct?
Cosmin Cioaclă
21,339 PointsCosmin Cioaclă
21,339 PointsThat seems to be the case, yes.
Ezra John Alvarez
557 PointsEzra John Alvarez
557 PointsThanks cosmin!