Cyval
Cyval

Reputation: 2519

GET variables with spaces

I'm trying to get a variable with spaces. However, the first string is only returned. I tried using htmlspecialcharsbut I did not succeed.

I did: categories.php <a href="categories.php?action=update&category=$category"></a>

Say, I have a category with the name 'Web Development'.That's two words but whenever I click that link, the status bar only appears to have categories.php?action=update&category=Web

How can I get the full string? Thanks

Upvotes: 0

Views: 67

Answers (1)

Kondziutek
Kondziutek

Reputation: 135

If you want to write url parts with spaces try urlencode()

Upvotes: 1

Related Questions