本文整理汇总了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
示例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;
?>
'>