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 trial

PHP Enhancing a Simple PHP Application Integrating Validation Errors Reviewing PHP Basics

Vidit Shah
Vidit Shah
6,037 Points

flavor.php

whats wrong with my code

output.php
<?php
include('flavor.php');
get_flavor()
{
  return $flavor;
}
 echo get_flavor();
echo "Randy's favorite flavor of ice cream is ____.";

?>
Brandon Berger
Brandon Berger
3,947 Points

whats the code of for flavor.php?

1 Answer

The challenge states that the file you included contains the function get_flavor() which returns the flavor. You just need to call the function and assign it to a variable that you create.

$flavor = get_flavor();