1002

1002

You are currently viewing a revision titled "1002", saved on 2025年10月2日 6:45 PM by kikuchiryuusei
タイトル
1002
コンテンツ
BEGIN{ $| = 1; print "Content-type: text/html\n\n"; open(STDERR, ">&STDOUT");} use CGI; $query = new CGI; $name=$query->param('name'); $add=$query->param('add'); $tel=$query->param('tel'); $mail=$query->param('mail'); #時間を取得(locatime(time)アクセスした現在の時間(サーバーの時計)を取得########## local($nsec,$nmin,$nhour,$nmday,$nmon,$nyear)=localtime(time); $nmon++; $nyear+=1900; $day="$nyear\t$nmon\t$nmday\t$nhour\t$nmin"; #外部ファイルに書き込############################# @data="$day\t$name\t$add\t$tel\t$mail\n"; open(FILE,">>save.txt")||&error("$datafile 外部ファイルが開きませんでしたエラー"); printFILE@data; close(FILE); ############################## print<<END; <html> <head> <title>input</title> </head> <body bgcolor="#FFFFFF"text="#000000"> <div align="center"> <h1><b>データベース初歩</b></h1> </div> <hr> END print"入力内容は、下記の通りです。<br><br>\n"; print"入力日時:$day<br>\n"; print"お名前:$name<br>\n"; print"ご住所:$add<br>\n"; print"電話番号:$tel<br>\n"; print"メールアドレス:$mail\n"; exit(0);
抜粋
脚注


Old New Date Created Author Actions
2025年10月2日 9:45 AM kikuchiryuusei

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です