submit.php
geeklog/public_html/filemgmt/submit.php
197行
$display .= "</ul>n<form action=submit.php method=post enctype='multipart/form-data'> n";
202行
$display .= "<input type=file name=newfile size=40 maxlength=100>";
215行
$display .= "<input type="file" name="newfileshot" size="40" maxlength="60"></td></tr>n";
上の2つはコードが美しくないので修正。215行の部分でクラスを追加。custom.cssで定義。
197行
$display .= "</ul>n<form action=submit.php method=post enctype='multipart/form-data'> n";
↓
$display .= "</ul>n<form action="submit.php" method="post" enctype="multipart/form-data"> n";202行
$display .= "<input type=file name=newfile size=40 maxlength=100>";
↓
$display .= "<input type="file" name="newfile" size="40" maxlength="100" class="input-file">";215行
$display .= "<input type="file" name="newfileshot" size="40" maxlength="60"></td></tr>n";
↓
$display .= "<input type="file" name="newfileshot" size="40" maxlength="60" class="input-file"></td></tr>n";上の2つはコードが美しくないので修正。215行の部分でクラスを追加。custom.cssで定義。
