20241004 perl

20241004 perl

You are currently viewing a revision titled "20241004 perl", saved on 2024年10月4日 9:46 PM by hasini
タイトル
20241004 perl
コンテンツ
File name - nyuryoku.html <html><head><title>データベース初歩</title></head> <body><center> <form method="post"action="input.cgi"><br><br> お名前<br> <input type="text"name="name"><br><br> 住所<br> <input type="text"name="add"><br><br> 電話番号<br> <input type="text"name="tel"><br><br> メールアドレス<br> <input type="text"name="mail"><br><br> <input type="submit"value="送信する"><br> <input type="reset"value="リセット"> </form></center> </body></html> ................................................................................................................................ input.cgi #!/usr/bin/perl 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外部ファイルが聞きませんでしたエラー″); print FILE@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
2024年10月4日 12:46 PM hasini

コメントを残す

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