edit.cgi

edit.cgi

You are currently viewing a revision titled "edit.cgi", saved on 2025年10月30日 7:32 PM by renjiapeng
タイトル
edit.cgi
コンテンツ
#!/usr/bin/perl BEGIN{ $| = 1; print "Content-type: text/html\n\n"; open(STDERR, ">&STDOUT"); } use CGI; $query = new CGI; open(IN, "< save.txt"); @data=<IN>; close (IN); print <<END; <html> <head> <title>フォトデータベース edit</title> </head> <body bgcolor="#FFFFFF" text="#000000"> <div align="center"> <h1><b>フォトデータベース edit</b></h1> </div> <hr> <form action="editc.cgi" method="POST"> <table border="1" width="100%"> <tr> <td>年月日</td><td>名前</td><td>category</td><td>画像</td><td>修正ボタン</td> </tr> END for($i=0;$i<@data;$i++){ @retudata=split(/\t/,$data[$i]); for($j=0;$j<=$retudata;$j++) {print"<tr>\n"; print"<td>@retudata[0]</td><td>@retudata[1]</td><td>@retudata[2]</td> <td><imgsrc=\"images/@retudata[3]\"width=\"100px\"height=\"auto\"></td> <td><input type=\"submit\" value=\"$i\" name=\"edit\"></tr>\n"; } }; print"</table></form></body></html>";
抜粋
脚注


Old New Date Created Author Actions
2025年10月30日 10:32 AM renjiapeng

コメントを残す

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