アットウィキロゴ

syusei04

<?php
require("calldata.php");
$sql = "SELECT * FROM data0401";
$result = mysql_query($sql, $link);
$n=1;
while( $row = mysql_fetch_row( $result ) ){
$matrix[$n][1] = $row[0];
$matrix[$n][2] = $row[1];
$matrix[$n][3] = $row[2];
$matrix[$n][4] = $row[3];
$n=$n+1;
}
$maxn=$n;
for ($n=1;$n<$maxn;$n++){
$year= $matrix[$n][1];
$age= $matrix[$n][2];
$m[$year][$age]= $matrix[$n][3];
$f[$year][$age]= $matrix[$n][4];
}


$sql = "truncate eli04";
$exe= mysql_query($sql,$link);
for ($year=5;$year<106;$year++){
for ($age=0;$age<105;$age++){
$x=$m[$year][$age];
$y=$f[$year][$age];
$sql = "insert into eli04 values($year,$age,$x,$y)";
$exe= mysql_query($sql,$link);
}
}
$close_flag = mysql_close($link);
print("04 将来推計人口 計算終了");
?>
最終更新:2011年01月27日 07:20