Good one!
Although it doesn't work in my case....
Here's what I have...
it's a form that when you hit 'Submit' it uses a CGI to send an email with the contents of the form (i don't know CGI, so i didn't wanna touch that), also at the same time you hit Submit it's got the following...
<input type="hidden" name="success" value="ftp://admin:abcd@myftpserver.com/">
Now, that line works and I receive the email...but, I don't want everybody to login as 'admin' of course...so I tried to do a string concatenation, using the fields from the form, like this:
<input type="hidden" name="success" value="ftp://" + form.username.value + ":" + form.password.value + "@myftpserver.com/">
It didn't work......
Any other ideas????