hyperlink - Preserve spaces in html links for operating system call arguments -
i built html index page german rtp iptv broadcast addresses works well, can @ here: http://lan7even.homenet dot org/server7even/test/iptv.php
for links work 1 have have german telekom entertain dsl/vdsl connection , 1 have register rtp://
protocol handler in browser call vlc media player.
there configured 1 argument vlc open in minimized view works well.
now trying set additional argument has different each link: iptv stream title (channel name)
but spaces replaced browser %20 automatically , therefore vlc not recognize argument.
everything find informations known stuff preserve spaces in html display purposes, can not find alter space substituting behavior when called via html link.
any hint?
spaces not valid characters in urls. url standard:
the url code points ascii alphanumeric, "!", "$", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/", ":", ";", "=", "?", "@", "_", "~", , code points in ranges u+00a0 u+d7ff, u+e000 u+fdcf, u+fdf0 u+ffef, u+10000 u+1fffd, u+20000 u+2fffd, u+30000 u+3fffd, u+40000 u+4fffd, u+50000 u+5fffd, u+60000 u+6fffd, u+70000 u+7fffd, u+80000 u+8fffd, u+90000 u+9fffd, u+a0000 u+afffd, u+b0000 u+bfffd, u+c0000 u+cfffd, u+d0000 u+dfffd, u+e1000 u+efffd, u+f0000 u+ffffd, u+100000 u+10fffd.
you'll need handle %20 appropriately on server side.
Comments
Post a Comment