• 締切済み

メールフォームにパスワード自動発行機能

ある会員サイトを作ろうと思い、メールフォームにパスワード自動発行の機能を持たせたいと考えています。 KENT-WEB(http://www.kent-web.com/)様で配布されている、 PasswordManager(http://www.kent-web.com/pwd/pwmgr.html) が一番理想に近いのですが、パスワード発行ページに入力必須項目 を増やすことが出来ません。 どうすれば可能でしょうか?どなたか教えてください。

みんなの回答

  • mac_res
  • ベストアンサー率36% (568/1571)
回答No.1

index.html <tr> <th class=r>希望ログインID</th> <td class=r><input type=text name=id size=10> <font color="green">(英数字で4~8文字)</font></td> </tr> <tr> <th class=r>追加項目</th> <td class=r><input type=text name=aux size=30></td> </td> </table> <p> <input type=submit value="新規登録する"> </form> ================================================================= pwmgr.cgi: # 会員ファイル open(IN,"$memfile") || &error("Open Error: $memfile"); local(@file) = <IN>; close(IN); unshift(@file,"$in{'id'}<>$in{'name'}<>$in{'eml1'}<>$in{'aux'}<><>\n"); open(OUT,">$memfile") || &error("Write Error: $memfile"); print OUT @file; close(OUT); # ロック解除 &unlock if ($lockkey); ============================================================= ============================================================= ※パスワードはご自分で自由に変更可能\ですので、覚えやすいものに 変更しておくことができます。 ▼登録内容 登録日時 : $date ホスト情報 : $host お名前 : $in{'name'} E-mail : $in{'eml1'} 追加項目 : $in{'aux'} ▼ログイン情報 ログインID : $in{'id'} パスワード : $pw --- $title管理人 <$master>

tamagonory
質問者

お礼

回答ありがとうございます。 何とかこれで頑張ってみます。

関連するQ&A

専門家に質問してみよう