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 trialLylie Lylie
10,872 PointsDownload file doesn't work
So the link to list.php seems to be broken
2 Answers
KRIS NIKOLAISEN
54,971 PointsMaybe try again since I was just able to download. If that doesn't work here is the code in list.php
<?php
$list = array();
$list[] = array(
'title' => 'Laundry',
'priority' => 2,
'due' => '06/09/2016',
'day' => 0,
'repeat' => true,
'complete' => false,
);
$list[] = array(
'title' => 'Dishes',
'priority' => 2,
'due' => null,
'day' => 0,
'repeat' => true,
'complete' => false,
);
$list[] = array(
'title' => 'Dust',
'priority' => 3,
'due' => null,
'day' => 5,
'repeat' => true,
'complete' => false,
);
$list[] = array(
'title' => 'Vacuum',
'priority' => 1,
'due' => '06/09/2016',
'day' => 1,
'repeat' => true,
'complete' => false,
);
$list[] = array(
'title' => 'Make Dinner',
'priority' => 1,
'due' => null,
'day' => 0,
'repeat' => true,
'complete' => false,
);
$list[] = array(
'title' => 'Clean Out Fridge',
'priority' => 2,
'due' => '07/30/2016',
'day' => 0,
'repeat' => true,
'complete' => true,
);
?>