// topページ // 共通設定の読み込み include 'common.php'; // 事務所リストの読み込み $tmp_list_array = file("{$dir['data']}production_list.txt", FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); $list_head = explode("\t", $tmp_list_array[0]); $list_head_key = array_flip($list_head); unset($tmp_list_array[0]); // 事務所をループ foreach($tmp_list_array as $key => $tmp_data) { $tmp_array = explode("\t", $tmp_data); foreach($tmp_array as $key2 => $tmp) { $tmp_head = $list_head[$key2]; $list_array[$key][$tmp_head] = trim($tmp); } } //print_r($list_array); ?>
include("{$dir['inc']}put_meta_head.php"); ?> include("{$dir['inc']}put_header.php"); // bodyの直後に何か書く時はこの下に書くこと ?>