#!/usr/local/bin/perl5 require "./cgi-lib.pl"; $homeURL = "http://www.onenet.com.hk"; $passfile = "password/password.txt"; $ret = &ReadParse; $mid=10000; if ( -e $passfile ){ open(pfile,$passfile); @lines = ; close(pfile); foreach (@lines){ ($id) = split(/\t/,$_); if ( $id > $mid ){ $mid = $id; } } $id = $mid+1; }else{ $id = 10000; } print <<_EOT_; Content-type: text/html one.net
Search the Web:







Member Registration Form 會 員 登 記 表 格
_EOT_ open(INF,"../regformtext.htm") ; @data = ; close(INF); foreach $line (@data) { chomp($line); print "$line\n"; } print <<_EOT_;
會 員 編 號
Member No.
$id
密 碼
Password*
確 定 密 碼
Verify Password*

Last Name*

Given Name*
電 子 郵 址
Email*
性 別
Sex*
Male Female 出 生 日 期
Date of Birth*
//
 DD / MM/ YYYY
職 業
Occupation
婚 姻 狀 況
Martial Status
電 話
Phone No.*
傳 真
Fax
傳 呼
Pager
手 提 電 話
Mobile
地 址
Address*
Hong Kong Kowloon N.T.
其 他 國 家
Other Country
家庭成員數目
Number of Household Members
興 趣
Interest/Hobbies

我 / 我 們 將 遵 循 網 上 良 品 會 員 的 規 章 與 條 件
I will abide by the rules and by-law of the onenet club.
_EOT_