Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
perl テキスト ボックスから値 jj を読み取りたい
print $q->textfield( -name => 'UserName', -value =>'jj', -size => 15, -maxlength =>40, );
私は読んでいた
my $txt=$q->param('UserName');
しかし、テキストボックスからは読み取られません。
paramPOST経由で送信されたデータまたはクエリ文字列をCGIプログラムに提供します。スクリプトで以前に出力したフォームに表示されるデータは提供されません。
param
それを知りたい場合は、使用を開始する前にデータを変数に入れます。
my $txt = "jj"; print $q->textfield( -name => 'UserName', -value => $txt, -size => 15, -maxlength =>40, );