After running urlencode() on an URL, the function will convert spaces inside the URL to "+". However when i try to access the encoded URL, it's not working. Looks like my server only supports %20
How do i need to do to make my server supports + as encoded spaces ? Or how can i urlencode the spaces to %20 instead ?
urlencode("http://www.example.com/just some test.zip");