トップ 差分 一覧 ソース 検索 ヘルプ PDF RSS ログイン

SION0019

<B><FONT color="#0000FF">sos2.cgi # Sub Input # Line1897-1900 (本家original) </FONT></B><BR>
<B><FONT color="#0000FF">perl/subsos.cgi # Sub Input # Line42-45(dollEx) </FONT></B><BR>
<b># Sub Input #<BR>
sub input {<BR>
print qq|&lt;input type=$_[0] name=$_[1] value=&quot;$_[2]&quot;$_[3]&gt;$_[4]|; <BR>
}</b><BR>
<TEXTAREA name="textfield" cols="100" rows="5" wrap="OFF">
#=《 Input 》============#
sub input {

$label++;
print qq|&lt;LABEL for=&quot;$label$_[1]&quot;&gt;\n|;
print qq|&lt;INPUT type=&quot;$_[0]&quot; name=&quot;$_[1]&quot; id=&quot;$label$_[1]&quot; value=&quot;$_[2]&quot;$_[3]&gt;$_[4]\n|;
print qq|&lt;/LABEL&gt;\n|;

}
</TEXTAREA>