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 trialTrần Phúc
2,264 PointsThe meaning of ' ' in PHP
Why use 'catalog.php' instead of catalog.php ---PHP
echo "<a href='catalog.php'>Full Catalog</a> $gt;"
Thanks
2 Answers
jcorum
71,830 PointsTran, for HTML attributes to validate the value must be inside quotation marks. For example: src="apple.png", href="www.google.com", class="group", etc.
However, if the HTML you want to echo is already inside double quotation marks, then you need to switch to single quotation marks, as in your example: echo "<a href='catalog.php'>Full Catalog</a>";
Trần Phúc
2,264 PointsThanks