skin.board.es_character/set_order_update.php

18 lines
506 B
PHP
Raw Permalink Normal View History

2024-10-21 11:29:44 +09:00
<?php
include_once "./_common.php";
2024-10-21 11:10:59 +09:00
2024-10-21 11:29:44 +09:00
for ($i = 0; $i < count($idx); $i++) {
$k = $idx[$i];
sql_query("update {$write_table}
2024-10-21 11:10:59 +09:00
set wr_10 = '{$order[$k]}',
wr_9 = '{$parents[$k]}',
wr_type = '{$type[$k]}'
where wr_id='{$k}'
");
2024-10-21 11:29:44 +09:00
if ($board['bo_use_category'] && $board['bo_category_list'] && $category[$k] != '') {
sql_query("update {$write_table} set ca_name='{$category[$k]}' where wr_9='{$k}'");
}
2024-10-21 11:10:59 +09:00
}
2024-10-21 11:29:44 +09:00
goto_url('./set_order.php?bo_table=' . $bo_table . '&write_table=' . $write_table);