Hi guys I would like to know how I can have PHP display this URL correctly. Is there a working encoding method I can use that converts all this:
253A%252F%252F
to
://
https%253A%252F%252Fvideos-private.s3.amazonaws.com%252Flesson05.flv
Hi guys I would like to know how I can have PHP display this URL correctly. Is there a working encoding method I can use that converts all this:
253A%252F%252F
to
://
https%253A%252F%252Fvideos-private.s3.amazonaws.com%252Flesson05.flv
The urldecode function decodes any %## encoding in the given string. In your "output" string you have %253A and so on. Remove those %25 and everything will be fine.