Administrator
From: you know you want a caricature
Registered: 2004-11-08
Posts: 3509
I've been thanked 37 times.
Offline
Anyone know where I can get one - one that sits on the desktoip, not a web-based one.
Ta
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2860
I've been thanked 85 times.
Offline
What is a URL encoder (in this respect)?
Last edited by Northie (2006-10-17 07:22:53)Administrator
From: you know you want a caricature
Registered: 2004-11-08
Posts: 3509
I've been thanked 37 times.
Offline
to convert say this
http://www.site.com/sub.html
into
http%3a%2f%2fwww.site.com%2fsub.html
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2860
I've been thanked 85 times.
Offline
if you run php on your desktop computer then you can use the urlencode() function
Code: html
<html>
<body>
<form action='<?= $_SERVER['PHP_SELF'] ?>' method='get'>
<table>
<tr><td>Encode this:</td><td><input type='text' name='url'></td></tr>
<tr><td></td><td><input type='submit' value='submit'></td></tr>
</table>
</form>
<hr>
<?= urlencode($_GET['url']) ?>
</body>
</html>

My 500th Post!!!!
Administrator
From: you know you want a caricature
Registered: 2004-11-08
Posts: 3509
I've been thanked 37 times.
Offline
nmo php on my machine...
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2860
I've been thanked 85 times.
Offline
I know you didn't want a web based one, but here is that script on my server for you to use until you find a desktop-based one
http://xeneco.co.uk/SR/urlencode.php
Administrator
From: you know you want a caricature
Registered: 2004-11-08
Posts: 3509
I've been thanked 37 times.
Offline
after one for the desktop.
There are many ones accessible via web... 
Member
From: Tampa Bay, Florida
Registered: 2006-06-19
Posts: 110
I've been thanked 1 times.
Offline
matte wrote:
Anyone know where I can get one - one that sits on the desktoip, not a web-based one.
Ta
Pardon my ignorance, but may I ask why one would need a URL encoder? What are the benefits?
Are you still having UNPROTECTED smokes? Safe Protection - Instant Results http://www.BlockTar.com
Member
From: Pell City, Alabama USA
Registered: 2004-11-17
Posts: 2084
I've been thanked 5 times.
Offline
matte wrote:
after one for the desktop.
There are many ones accessible via web...
boy you're awfully picky aren't you ? Northies web app will run right in the browser on your desktop.
TombOfTheMutilated.NET - Destroying The Minds of America's Youth Since 2001
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2860
I've been thanked 85 times.
Offline
Mutilated1 wrote:
matte wrote:
after one for the desktop.
There are many ones accessible via web...boy you're awfully picky aren't you ? Northies web app will run right in the browser on your desktop.
and I even sent that data as 'get' data so you can form the urls for the results pages via some automated means if you wanted to...lol 
Member
From: Pell City, Alabama USA
Registered: 2004-11-17
Posts: 2084
I've been thanked 5 times.
Offline
PumaSpirit wrote:
matte wrote:
Anyone know where I can get one - one that sits on the desktoip, not a web-based one.
TaPardon my ignorance, but may I ask why one would need a URL encoder? What are the benefits?
You might need one because according to RFC 1738 an URL can only composed of a subset of the valid ASCII characters.
Well as you might imagine webpages can contain characters from the entire set of characters, not counting UNICODE.
Thus there is the need for encoded URLs.
TombOfTheMutilated.NET - Destroying The Minds of America's Youth Since 2001
Administrator
From: you know you want a caricature
Registered: 2004-11-08
Posts: 3509
I've been thanked 37 times.
Offline
Mutilated1 wrote:
matte wrote:
after one for the desktop.
There are many ones accessible via web...boy you're awfully picky aren't you ? Northies web app will run right in the browser on your desktop.
Yes -I don't want one accessible via the web...
Administrator
From: you know you want a caricature
Registered: 2004-11-08
Posts: 3509
I've been thanked 37 times.
Offline
PumaSpirit wrote:
[
Pardon my ignorance, but may I ask why one would need a URL encoder? What are the benefits?
Many affiliate programs need deeplinking to be encoded for their links to validate correctly.
That is my use of encoding
Member
From: Pell City, Alabama USA
Registered: 2004-11-17
Posts: 2084
I've been thanked 5 times.
Offline
Here you go
http://www.codeguru.com/cpp/cpp/cpp_mfc … php/c4029/
complete with source code - if you need it compiled message me, and I'll e-mail it to you
TombOfTheMutilated.NET - Destroying The Minds of America's Youth Since 2001
Member
From: Tampa Bay, Florida
Registered: 2006-06-19
Posts: 110
I've been thanked 1 times.
Offline
matte wrote:
PumaSpirit wrote:
[
Pardon my ignorance, but may I ask why one would need a URL encoder? What are the benefits?Many affiliate programs need deeplinking to be encoded for their links to validate correctly.
That is my use of encoding
Thank you matte, I have seen them before and now it makes sense. Isn't it amazing how we never stop learning?
Are you still having UNPROTECTED smokes? Safe Protection - Instant Results http://www.BlockTar.com
| Never |


