Gossamer Forum
Home : Products : DBMan : Installation :

comma in textbox

Quote Reply
comma in textbox
Okay, 1st step to my debugging process (since I got everything screwed up nice and good hehehehe -- this is fun)
I got commas poping up in my textboxes on my add form. I've throughly (well I think I have) and have tried to follow Alex's EXCELLENT example (oh gosh a keanu reaves soundbit -- the earth is crumbling now) with the following working but strange output:

address => [3, 'alpha', 40, 150, 0, ", "],

and by the way I really just don't get this [.......0, ", "]? yeah the first parts including the 0 for the null field is fine but quote - comma - space/space - quote part is something perl to me ???? any great help out there for me.

Sorry about this message I'm slightly or even grossly losing it today, old men jokes (at the age of 29 ) I guess.
Quote Reply
Re: comma in textbox In reply to
In the line

address => [3, 'alpha', 40, 150, 0, ", "],

the quotes are not really quotes. They look like quotes, but they're really two single quotes in disguise. (In the original, that is. Here, you have double quotes.)

Replace each double quote above with two single quotes and you'll be all set.


------------------
JPD


[This message has been edited by JPDeni (edited February 25, 1999).]
Quote Reply
Re: comma in textbox In reply to
thank you again and again JPDeni!!!