| rindolf | LinuxMafia: do you know perl -d? |
| Randal | false is false. true is true. nothing else is. :) |
| LinuxMafia | rindolf, i used it long time ago rindolf, dont remember |
| rindolf | LinuxMafia: then print or "x". LinuxMafia: there may be a command to display it using the ddd graphical display. |
| killer_ | cactusbin: I thought that use CGI; would determine the POST size for me? |
| Randal | it does you don't have to think about GET vs POST it Just Works use CGI qw(param); |
| LinuxMafia | rindolf, and if there is a line like this $a=f(); what if i dont want go inside function f? |
| Randal | my $value = param("fieldname"); |
| rindolf | LinuxMafia: then set a breakpoint there. |
| hobbs | unless you have the marginally-nonstandard POST with url params |
| rindolf | LinuxMafia: or use the "step into" or "s" command. |
| amnesiac | Randal, so, is Stone Henge parte of YAPC::NA 2007 sponsors? |
| hobbs | in which case CGI.pm does something different from everyone else, and you have to think about it :) |
| LinuxMafia | rindolf, thanks let me try it thanks alot |
| cactusbin | how do I turn my array into a drop-down menu by putting <option> </option> between every value |
| rindolf | LinuxMafia: you're welcome. |
| cactusbin | map seems to do everyother vlue... |
| rindolf | cactusbin: maybe you have a hash? |
| mauke | @array = map { "<option>$_</option>" } @array; |
| cactusbin | no array |
| rindolf | cactusbin: ah. |
| cactusbin | I have @images = map {<option>.CGI::escapeHTML($_).</option>} @images; |
| mauke | cactusbin: that's wrong |
| rindolf | cactusbin: that's not valid perl. |
| mauke | rindolf: yes, it is |
| cactusbin | You never explained urself rin |
| rindolf | cactusbin: are you using "use strict;" and use warnings; |
| cactusbin | yes it passes fine |
| mauke | cactusbin: you should get a warning about reading from an unopened filehandle and another warning about using uninitialized values |
| rindolf | cactusbin: <option> reads from the filehandle "option". |
| LinuxMafia | rindolf, wow if you put mose over it shows you the value , this is cool |
| rmah | it's sort of valid perl, but you probably don't want to read from option filehandle will </option> parse though? |