i'm trying to get 2 url parameters using this code:
$page = htmlspecialchars($_GET["page"]);
$category = htmlspecialchars($_GET["category"]);
and the result i get looks like this:
leaderboard?category=any%
and the url looks like this:
?page=leaderboard?category=any%
How do i get both results now?
Cheers, Chris.
htmlspecialcharsis not for URLs. How are you using the variables you defined?