MySQLテーブルのWEB表示

戻る

TMPLファイル #!C:/perl/bin/perl # showmysqltable1.pl use strict; use DBI; use CGI qw/:standard/; use HTML::Template; my $template = HTML::Template->new(filename => 'cook1.htm'); my @loop = (); my $dsn = "DBI:mysql:host=localhost;database=cookbook"; my $dbh = DBI->connect($dsn,"cbuser","cbpass") or die "Can't connect to server\n"; if(!$dbh) { print "SQL read ERROR!\n"; exit; } my $sth = $dbh->prepare("SELECT things,legs,arms FROM limbs"); $sth->execute; while ( my @arr = $sth->fetchrow_array ) { my %row = ( things => $arr[0], legs => $arr[1], arms => $arr[2] ); push(@loop, \%row); } $sth->finish; $dbh->disconnect; $template->param(THIS_LOOP => \@loop); print "Content-Type:text/html\n\n", $template->output; exit(0);

戻る
陇南市| 南丹县| 谢通门县| 全椒县| 罗城| 玉溪市| 潍坊市| 景谷| 常德市| 启东市| 武清区| 炎陵县| 海林市| 札达县| 利津县| 嫩江县| 泰来县| 大田县| 新乐市| 沂水县| 涞源县| 武陟县| 天门市| 贡觉县| 鞍山市| 密山市| 桐柏县| 海门市| 奈曼旗| 裕民县| 崇仁县| 连州市| 永年县| 辉南县| 临朐县| 奉新县| 河曲县| 德昌县| 漠河县| 平罗县| 景宁|