本文整理汇总了PHP中drawFooter函数的典型用法代码示例。如果您正苦于以下问题:PHP drawFooter函数的具体用法?PHP drawFooter怎么用?PHP drawFooter使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了drawFooter函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: drawFooter
<h2>Drum Sounds</h2>
<p>BEATS is not terribly useful unless you have drum sounds to use with it. You can use many 8 and 16-bit wave files as drum sounds. Here are a few collections of sounds to help you get started:</p>
<ul>
<li id="drumkit-hammerhead" class="drumkit">
<h3><a href="/hammerhead_drum_sounds.zip">Hammerhead</a></h3>
<p>371 sounds extracted from various <a href="http://www.threechords.com/hammerhead/introduction.shtml">Hammerhead</a> sound banks using <a href="https://github.com/jstrait/clawhammer">Clawhammer</a>.</p>
<ul class="sample-list">
<li><label>acoustic_3_1.wav</label><audio src="/media/acoustic_3_1.wav" controls>Your browser can't play this audio file.</audio></li>
<li><label>hh_909_clap.wav</label><audio src="/media/hh_909_clap.wav" controls>Your browser can't play this audio file.</audio></li>
<li><label>jungle_3.wav</label><audio src="/media/jungle_3.wav" controls>Your browser can't play this audio file.</audio></li>
<li><label>industrial_fx_4.wav</label><audio src="/media/industrial_fx_4.wav" controls>Your browser can't play this audio file.</audio></li>
</ul>
</li>
<li id="drumkit-casio" class="drumkit">
<h3><a href="/casio_sa20_drum_sounds.zip">Casio SA-20</a></h3>
<p>20 <span style="text-decoration: line-through;">high quality</span> sounds sampled from a <a href="http://kepfeltoltes.hu/100407/Sa20_01_www.kepfeltoltes.hu_.jpg">Casio SA-20 keyboard</a> I got when I was 8 years old.</p>
<ul class="sample-list">
<li><label>bass.wav</label><audio src="/media/bass.wav" controls>Your browser can't play this audio file.</audio></li>
<li><label>snare.wav</label><audio src="/media/snare.wav" controls>Your browser can't play this audio file.</audio></li>
<li><label>hh_closed.wav</label><audio src="/media/hh_closed.wav" controls>Your browser can't play this audio file.</audio></li>
<li><label>tom3.wav</label><audio src="/media/tom3.wav" controls>Your browser can't play this audio file.</audio></li>
</ul>
</li>
</ul>
</div>
<div class="content-box">
<h2>Source Code</h2>
<p>It’s <a href="http://github.com/jstrait/beats">over at GitHub</a>.</p>
</div>
<? drawFooter(); ?>
示例2: while
while ($row = $result->fetch_assoc()) {
extract($row);
if ($a % 2 == 0) {
$class = 'listRowEven';
} else {
$class = 'listRowOdd';
}
$Table_ID = rawurlencode($Table_ID);
echo "<tr class='{$class}'><td align=center><a href='DetailView_Tables.php?Table_ID={$Table_ID}'><img src='../images/view.png' alt='View' title='View'></a>" . " <a href='Edit_Tables.php?Table_ID={$Table_ID}'><img src='../images/edit.png' alt='Edit' title='Edit'></a>" . " <a href='Del_Tables.php?Table_ID={$Table_ID}'><img src='../images/delete.png' alt='Delete' title='Delete'></a></td>";
printf("<td>%s</td><td>%s</td></tr>\n", $row['Table_Name'], $row['Remarks']);
$a++;
}
$result->close();
if ($a % 2 == 0) {
$class = 'listRowEven';
} else {
$class = 'listRowOdd';
}
echo '<tr><td colspan="3" class="' . $class . '">' . $a . ' records in total</td></tr>';
} else {
die($mysqli->error);
}
?>
</table>
<?php
drawButton('CANCEL');
?>
</fieldset>
<?php
drawFooter();
示例3: drawFooter
</tr><tr>
<td align=left>
<input type="hidden" name="id" value=<?php
echo $_GET["id"];
?>
>
<input type="submit" name="delete" value="Delete">
</td>
</tr><tr>
<td>
<font color="red"><b>WARNING</b> - This action cannot be undone.</font><br>
</td>
</tr>
</table>
</table>
</form>
</font>
<br>
<!-- Footer -->
<font color='FFFFFF'>
<?php
echo drawFooter();
?>
</font>
</body>
</html>