Files
sam-kd/todo/_row.php

12 lines
567 B
PHP
Raw Normal View History

<?php
$orderdate = isset($row['orderdate']) ? $row['orderdate'] : '';
$towhom = isset($row['towhom']) ? $row['towhom'] : '';
$reply = isset($row['reply']) ? $row['reply'] : '';
$deadline = isset($row['deadline']) ? $row['deadline'] : '';
$work_status = isset($row['work_status']) ? $row['work_status'] : '';
$title = isset($row['title']) ? $row['title'] : '';
$first_writer = isset($row['first_writer']) ? $row['first_writer'] : '';
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
?>