in reply to Re: browser sending random info
in thread browser sending random info

i chomped the values and it didn't help, then ovid, i checked the html, and turns out it was my own dumb fault- it was in the regex i used: @elements = split(/\|+/,$myvar); reading then writing back to a text file looking like this: 0|0|0|0 i should have used this: @elements = split(/\|/,$myvar); thanks though! is there a place in here when i could post potentially useful code bits for those seeking to accomplish the same thing i was doing? i was creating a simply survey.cgi to keep track of people's responses to a web poll.

Replies are listed 'Best First'.
Re: Re: Re: browser sending random info
by andye (Curate) on Dec 17, 2001 at 21:37 UTC
    Hi stretched2thin - glad it worked out.

    is there a place in here when i could post potentially useful code bits for those seeking to accomplish the same thing i was doing?

    Snippets

    andy.

      thanks!