Hi,
When I do this from the nL command line interpreter:
> (println "×tamp")
×tamp
"×tamp"
All good as expected.
When I am running it on a web server cgi script looking at it from my browser, I end up with this result:
×tamp
How do I preserve ×tamp if I am making a string, say to include in a url?
When the result is ×tamp instead of ×tamp in the url, things break.
It seems like when seen "×", something is changing that to show × instead?
I have this at top of the cgi script:
(print "Content-Type: text/htmlrnrn")
Thanks very much!
Try escaping the ampersand as &. × is the multiplication cross sign...
Thank you Kirill,
&timestamp=
made
×tamp=
Thanks for the magic direction!