なお、県コードの配列はincludeにしましたので、こちらのページを参照して下さい。
県コード一覧表の表示サンプルはこちらです。
<?php include_once 'pref.php'; ?> <html> <head> <title></title> </head> <body> <table border="1" align="center"> <caption>【県コード&県名一覧】</caption> <tr><th width=80 bgcolor=#00FF00>県コード</th> <th width=80 bgcolor=#00FF00>県名</th></tr> <?php foreach ($prefAry as $key=>$value) { ?> <tr> <td align="center"> <?php print $key; ?> </td><td align="center"> <?php print $value; ?> </td> </tr> <?php } ?> </table> </body> </html>
0 件のコメント:
コメントを投稿