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 trialGlaukio Llupo
9,552 PointsI DO NOT understand this.
Hi everyone, In this: https://teamtreehouse.com/library/php-arrays-and-control-structures/php-arrays/multidimensional-arrays , code challenge, it gave me this error:
PHP Parse error: syntax error, unexpected end of file, expecting '`'
When my code was perfectly fine. My code:
<?php
//edit this array
$contacts = array
(
array('name' => 'Alena Holligan', 'email' => 'alena.holligan@teamtreehouse.com'),
array('name' => 'Dave McFarland', 'email' => 'dave.mcfarland@teamtreehouse.com'),
array('name' => 'Treasure Porth', 'email' => 'treasure.porth@teamtreehouse.com'),
array('name' => 'Andrew Chalkley', 'email' => 'andrew.chalkley@teamtreehouse.com')
);
echo "<ul>\n";
echo "<li>" . $contacts[0]['name'] . " : " . $contacts[0]['email'] . "</li>\n";
echo "<li>" . $contacts[1]['name'] . " : " . $contacts[1]['email'] . "</li>\n";`
echo "<li>" . $contacts[2]['name'] . " : " . $contacts[2]['email'] . "</li>\n";
echo "<li>" . $contacts[3]['name'] . " : " . $contacts[3]['email'] . "</li>\n";
echo "</ul>\n";
But it still gave me that error. When i added " `; " on the bottom of the file, i passed. On the end:
`;
Can someone please explain what " `; " is? Thanks!
1 Answer
Heidi Fryzell
Front End Web Development Treehouse Moderator 25,178 PointsHello Glaukio,
I think you have a "backtick" at the end of the second list item. It was probably just a typo. It is very tiny and hard to see.
echo "<li>" . $contacts[1]['name'] . " : " . $contacts[1]['email'] . "</li>\n";`
I tried to make it bold so you can see it above. I think if you delete this character the code should pass the tests.
The error is trying to tell you to "close" the backtick but really you should just delete it.
I hope this works. Happy Coding! Heidi
Heidi Fryzell
Front End Web Development Treehouse Moderator 25,178 PointsHeidi Fryzell
Front End Web Development Treehouse Moderator 25,178 PointsActually you can't see the backtick that well in my answer.
Here is an image:
:)
Glaukio Llupo
9,552 PointsGlaukio Llupo
9,552 PointsThanks!