Upvote Upvoted 6 Downvote Downvoted
URL Parsing with brackets
1
#1
0 Frags +

URLs with brackets don't work:

http://play.esea.net/teams/41337?tab=league&period[type]=seasons&period[season_start]=152

Which makes sense considering the bracket codes are used to define formatting, so I don't know if there's any easy fix!

URLs with brackets don't work:

http://play.esea.net/teams/41337?tab=league&period[type]=seasons&period[season_start]=152

Which makes sense considering the bracket codes are used to define formatting, so I don't know if there's any easy fix!
2
#2
5 Frags +

All that needs to happen is replace the characters (in this case, the bracket characters) with their URL encoding equivalent, as such:

http://play.esea.net/teams/41337?tab=league&period%5Btype%5D=seasons&period%5Bseason_start%5D=152

All that needs to happen is replace the characters (in this case, the bracket characters) with their URL encoding equivalent, as such:

http://play.esea.net/teams/41337?tab=league&period%5Btype%5D=seasons&period%5Bseason_start%5D=152
3
#3
6 Frags +

Percent encode them

%5B = '['
%5D = ']'

edit: rip

Percent encode them

%5B = '['
%5D = ']'

edit: rip
4
#4
0 Frags +

sweet!

It would be great if the URL tool automatically added these

sweet!

It would be great if the URL tool automatically added these
5
#5
4 Frags +

the link button should urlencode whatever you enter into the dialogue box now

test

the link button should urlencode whatever you enter into the dialogue box now

[url=http://play.esea.net/teams/41337?tab=league&period%5Btype%5D=seasons&period%5Bseason_start%5D=152]test[/url]
Please sign in through STEAM to post a comment.