當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CDatabase::executeQuery方法代碼示例

本文整理匯總了PHP中CDatabase::executeQuery方法的典型用法代碼示例。如果您正苦於以下問題:PHP CDatabase::executeQuery方法的具體用法?PHP CDatabase::executeQuery怎麽用?PHP CDatabase::executeQuery使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CDatabase的用法示例。


在下文中一共展示了CDatabase::executeQuery方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: CDatabase

<?php

$title = 'Template for testprogram';
include 'header.php';
include 'class/CDatabase.php';
?>
<div id='content'>
<?php 
$db = new CDatabase();
if (isset($_GET['animal'])) {
    $type = $_GET['animal'];
    $res = $db->executeQuery("SELECT * FROM animal WHERE id='{$type}'");
    ?>
	<h1 class="animalName"><?php 
    echo utf8_encode($res[0]['name']);
    ?>
</h1>
	<img id="slider" src="images/<?php 
    echo $res[0]['image'];
    ?>
Front1.jpg" atr="<?php 
    echo utf8_encode($res[0]['animalName']);
    ?>
" width="300" height="360" class="animalFront">
	<div id="menu">
			<p class="buttonInfo" id="infoBtn">Info</p>
			<p class="buttonLive" id="liveBtn">Bor</p>
			<p class="buttonEat" id="eatBtn">Äter</p>
			<p class="buttonExtra" id="extraBtn">Extra</p>
	</div>
	<img id="playText" src="images/speakerOff.png" atr="Högtalare" width="30"  height="30" style="margin: 10px">
開發者ID:Stolle95,項目名稱:jsproj,代碼行數:31,代碼來源:play.php

示例2: CDatabase

<?php

$title = 'Template for testprogram';
include 'header.php';
include 'class/CDatabase.php';
$db = new CDatabase();
$res = $db->executeQuery('SELECT animal.id, animal.name from animal');
?>
<div id='content'>
<div id='animalList'>
<h1>Klicka på ett djur</h1>
<i>Tips.. håll musen över varje bild för att höra hur dom låter</i>
<form method="GET">
<?php 
foreach ($res as $key => $value) {
    ?>
 <a href="play.php?animal=<?php 
    echo $res[$key]['id'];
    ?>
" name="<?php 
    echo $res[$key]['id'];
    ?>
"><img id="<?php 
    echo $res[$key]['id'];
    ?>
" class="animal" src="images/<?php 
    echo $res[$key]['id'];
    ?>
Sign.jpg" 
		atr="<?php 
    echo $res[$key]['name'];
開發者ID:Stolle95,項目名稱:jsproj,代碼行數:31,代碼來源:meny.php


注:本文中的CDatabase::executeQuery方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。