newLISP Fan Club

Forum => newLISP in the real world => Topic started by: tom on April 22, 2005, 08:02:01 AM

Title: using cgi.lsp
Post by: tom on April 22, 2005, 08:02:01 AM
Hey guys,



I made a simple html form text field that creates an page on my newlisp wiki, but it only works if the imput is a single word.  I'm having trouble converting "this string" to "this_string"

I've tried a few different things with no success.



any ideas?



thanks.
Title:
Post by: eddier on April 22, 2005, 08:52:02 AM
Try the following



Put a replace around whatever accesses the URL field. That is ...

(replace " " (whatever gets the URL field) "_")


Eddie