Euphoria CGI forms
- Posted by "Michelle Rogers" <michellerogers at bellsouth.net> Jul 05, 2004
- 628 views
When using euphoria for cgi, is it not possible to pass a hidden value, from a variable...like this.. integer theval theval=8 <insert all the other form code that goes before this> puts(1,"<input type\"hidden\" name=\"hiddenvariable\" value=theval>") Anytime I've tried to do that, the variable is always blank when I retrieve it from the next page. On the other hand, puts(1,"<input type\"hidden\" name=\"hiddenvariable\" value=\"theval\">") works fine, except of course, that's not what I want. But, what I mean is...if I type out an exact value, it works. But, if I try to use a variable value, it doesn't work. Is this a limit of euphoria and cgi? Or, am I doing/not doing something wrong? I've also tried doing puts(1,"<inpute type\"hidden\" name=\"hiddenvariable\" value=sprint(thevalue)>") in case it needed a sequence, not an integer. But, that doesn't work either. Any ideas? suggestions? Michelle Rogers