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 Using PHP with MySQL Filtering Input for Queries Using a WHERE Clause

"%20" in single product urls

Since I've created the products table, my urls to single products look like this: "http://localhost/shirts4mike/%20'shirts/'%20104/". I followed the video step-by-step, so I don't know what went wrong. How can I fix it?

2 Answers

A browser will sometimes turn spaces or characters into unicode. If you don't want that you can use a dash or underscore.

%20 is a space character.