editc.cgi

editc.cgi

You are currently viewing a revision titled "editc.cgi", saved on 2025年10月30日 7:37 PM by KHATRi NIRMAL
タイトル
editc.cgi
コンテンツ
#!/usr/bin/perl BEGIN{$|=1;print"Content-type:text/html\n\n";open(STDERR, ">&STDOUT");} use CGI; $query=new CGI; $edit=$query->param('edit'); open(IN,"<save.txt"); @data=<IN>; close(IN); print<<END; <html> <head> <title>フォトデータベース edit</title> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> </head> <body bgcolor="#FFFFFF" text="#000000"> <div align="center"> <h1><b>フォトデータベース edit</b></h1> </div> <hr> END @cdata=@data[$edit]; ################################################### for($i=0;$i<@cdata;$i++){ @moto=split(/\t/,$cdata[$i]); }; ###################################### print"<form method=\"POST\" name=\"formin\" action=\"iedit.cgi\" enctype=\"multipart/form-data\">\n"; print"お名前:<input type=\"text\" name=\"name\" value=\"$moto[1]\"><br>\n"; print"カテゴリー:<input type=\"text\" name=\"category\" value=\"$moto[2]\"><br>\n"; print"<input type=\"hidden\" name=\"mphoto\" value=\"$moto[3]\">\n"; print"<input type=\"hidden\" name=\"edit\" value=\"$edit\">\n"; print"<p><input type=\"file\" name=\"upload_file\" size=\"32\"></p>\n"; print"<p><input type=\"submit\" name=\"submit\" value=\"send\"><input type=\"reset\" name=\"submit2\" value=\"reset\"></p>\n"; print"</form>\n"; print"<hr>\n"; print"</body></html>\n";
抜粋
脚注


Old New Date Created Author Actions
2025年10月30日 10:37 AM KHATRi NIRMAL

コメントを残す

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