当前位置: 首页>>代码示例>>PHP>>正文


PHP Schedule::initDB方法代码示例

本文整理汇总了PHP中Schedule::initDB方法的典型用法代码示例。如果您正苦于以下问题:PHP Schedule::initDB方法的具体用法?PHP Schedule::initDB怎么用?PHP Schedule::initDB使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Schedule的用法示例。


在下文中一共展示了Schedule::initDB方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: isset

if (isset($_POST["date"])) {
    $schedule->initProperty($_POST["MyId"], $_POST["seasonId"], $_POST["categoryId"], $_POST["teamId"], $_POST["awayTeamId"], isset($_POST["tpHome"]) ? 1 : 0, strtotime($_POST["date"]), $_POST["stade"], $_POST["city"], $_POST["refereeId1"], $_POST["refereeId2"], $_POST["refereeId3"], $_POST["refereeId4"], $_POST["markerId1"], $_POST["markerId2"], $_POST["pointTp"], $_POST["pointAwayTeam"], $mySql);
    $schedule->PageMode = $_POST["pageMode"];
    $schedule->validate($mySql);
    if (!$schedule->getHasError()) {
        if ($schedule->PageMode == Constants::PAGE_MODE_EDIT) {
            $schedule->update($mySql);
        } else {
            $schedule->addNew($mySql);
        }
    }
    header('Location: schedule.php');
    exit;
} else {
    if (isset($_GET["id"])) {
        $schedule->initDB($_GET["id"], $mySql);
        echo date("Y-m-d H:i", $schedule->Date);
        $schedule->PageMode = Constants::PAGE_MODE_EDIT;
    } else {
        echo "[Nouvelle]";
        $schedule->PageMode = Constants::PAGE_MODE_ADD;
    }
}
?>
                        </h4>
                    </div>
                    <div class="row">					
                        <form action="schedule_edit.php" id="form_schedule" method="post">
                            <div class="row">
                                <div class="small-6 columns">
                                    <label <?php 
开发者ID:jgthibault,项目名称:BaseballTP,代码行数:31,代码来源:schedule_edit.php

示例2: while

                <div class="row">
                    <h4>horaire - match</h4>
                </div>
                    <div class="row">				
                        <table id="saison" width="100%">
                            <thead>
                            <tr>
                                <th>Action</th><th>Date</th><th>Catégorie</th></th><th>Équipe pistoloise</th><th>Équipe adversaire</th>
                            </tr>
                            </thead>
                            <tbody>
                            <?php 
if ($result = $mySql->execute("SELECT * FROM schedule ORDER BY Date ASC")) {
    while ($row = $result->fetch_object("Schedule")) {
        $schedule = new Schedule();
        $schedule->initDB($row->Id, $mySql);
        ?>
                                        <tr>
                            				<td>
                                                <a title="Modifier" href="schedule_edit.php?id=<?php 
        echo $row->Id;
        ?>
">
                                                    <i class="fi-page-edit size-32"> </i>
                                                </a> 
                                                 <a title="Supprimer"  
                                                   onclick="javascript:return confirm('Voulez-vous supprimer l\'enregistrement?');" 
                                                   href='schedule.php?delete=<?php 
        echo $row->Id;
        ?>
'>
开发者ID:jgthibault,项目名称:BaseballTP,代码行数:31,代码来源:schedule.php


注:本文中的Schedule::initDB方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。