CodeIgniter Forums
Spaces and dots/periods in URLs - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Spaces and dots/periods in URLs (/showthread.php?tid=39779)



Spaces and dots/periods in URLs - El Forum - 03-20-2011

[eluser]Rob Corley[/eluser]
Hello,

Apologies first if I am posting in the wrong place!

I am trying to pass a filename in the URL, so I am using urlencode to encode something like this:-

http://www.example.com/page/file name.ext/some folder name/

I then want to use the strings 'file name.ext' and 'some folder name' in the page controller. However codeigniter when I retrieve the URL string returns it with the . and the spaces as underscores:-

'files_name_ext'

So I have no way to differentiate between the 2. (some filenames contain multiple dots so I can't just replace the 4th last character).

Many thanks in advance!