view.cgi new

view.cgi new

You are currently viewing a revision titled "view.cgi new", saved on 2025年10月23日 7:25 PM by Sudip Bhandari
タイトル
view.cgi new
コンテンツ
#!/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>フォトデータベース view</title> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> </head> <body bgcolor="#FFFFFF" text="#000000"> <div align="center"> <h1><b>フォトデータベース view</b></h1> </div> <hr> <table border="1"> <tr> <td>年月日</td><td>名前</td><td>category</td><td>画像</td> </tr> END for($i=0;$i<@data;$i++){ @retudata=split(/\t/,$data[$i]); for($j=0;$j<=$retudata;$j++) { print"<tr height=\"200px\"><td>@retudata[0]</td><td>@retudata[1]</td><td>@retudata[2]</td ><td width=\"200\" align=\"center\" valign=\"middle\"><a href=\"images/@retudata[3]\" target=\"blank\"><img src=\"images/@retudata[3]\" width=\"100px\" height=\"auto\"></a></td>\n"; } }; print"</table>"; print"</body></html>\n";
抜粋
脚注


Old New Date Created Author Actions
2025年10月23日 10:25 AM Sudip Bhandari

コメントを残す

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