function videos() { $v = new Model("_videos"); $v = $v->Read("*", 0, "created_at desc"); for ($i = 0; $i < sizeof($v); $i++) { $v[$i]['date'] = get_date_hour($v[$i]['created_at'], true); } return $v; }
<?php // ファイル格納アドレスの設定 $uploadaddless = $_SERVER['DOCUMENT_ROOT'] . '/account_book/img_upload'; // 先頭句の設定 $tmpimgname = 'pay_img_'; // 日時の設定 require_once 'get_date.php'; $date = $get_date_yaer() . $get_date_mouch() . get_date_day() . get_date_hour() . get_date_minute() . get_date_second(); // 拡張子の設定 $extension = ".jpg"; $pay_img = ""; // ファイルをサーバーに移動 if (move_uploaded_file($_FILES["img_upload"]["tmp_name"], $uploadaddless . $tmpingname . $date)) { $pay_img = $uploadaddless . $tmpingname . $date; echo $pay_img; } else { echo "ファイルをアップロードできませんでした"; }
</thead> <tbody> <tr><td>ID</td><td><?php echo $id; ?> </td></tr> <tr><td>USUÁRIO</td><td><?php echo $usuario; ?> </td></tr> <tr><td>SENHA</td><td><?php echo $senha; ?> </td></tr> <tr><td>ÚLTIMO LOGIN</td><td><?php echo get_date_hour($lastlogin, true); ?> </td></tr> <tr><td>AÇÕES</td><td><?php echo link_to_update($id); ?> </td></tr> </tbody> </table> </div> </div> <script>
<thead> <tr> <th>ID</th> <th>USUÁRIO</th> <th>ÚLTIMO LOGIN</th> <th>AÇÕES</th> </tr> </thead> <tbody> <?php if (!is_multidimensional($dados)) { $dados = array($dados); } foreach ($dados as $usuario) { extract($usuario); if ($level != 0) { echo "<tr><td>" . $id . "</td><td>" . $usuario . "</td><td>" . get_date_hour($lastlogin, true) . "</td><td>"; if ($level > 1) { echo link_to_update($id); echo link_to_delete($id); } else { echo "Usuário Master. Nenhuma ação permitida"; } echo "</td></tr>"; } } ?> </tbody> </table> </div> </div>