19 lines
981 B
PHP
19 lines
981 B
PHP
|
|
<?php
|
||
|
|
$num = isset($row["num"]) ? $row["num"] : '';
|
||
|
|
$author_id = isset($row["author_id"]) ? $row["author_id"] : ''; // Using corrected key
|
||
|
|
$author = isset($row["author"]) ? $row["author"] : '';
|
||
|
|
$al_company = isset($row["al_company"]) ? $row["al_company"] : '';
|
||
|
|
$al_part = isset($row["al_part"]) ? $row["al_part"] : '';
|
||
|
|
$registdate = isset($row["registdate"]) ? $row["registdate"] : '';
|
||
|
|
$al_item = isset($row["al_item"]) ? $row["al_item"] : '';
|
||
|
|
$al_askdatefrom = isset($row["al_askdatefrom"]) ? $row["al_askdatefrom"] : '';
|
||
|
|
$al_askdateto = isset($row["al_askdateto"]) ? $row["al_askdateto"] : '';
|
||
|
|
$al_usedday = isset($row["al_usedday"]) ? $row["al_usedday"] : '';
|
||
|
|
$al_content = isset($row["al_content"]) ? $row["al_content"] : '';
|
||
|
|
$status = isset($row["status"]) ? $row["status"] : '';
|
||
|
|
$e_line = isset($row["e_line"]) ? $row["e_line"] : '';
|
||
|
|
$e_confirm = isset($row["e_confirm"]) ? $row["e_confirm"] : '';
|
||
|
|
$e_confirm_id = isset($row["e_confirm_id"]) ? $row["e_confirm_id"] : '';
|
||
|
|
|
||
|
|
?>
|