本文整理匯總了PHP中Conexao::runSQL方法的典型用法代碼示例。如果您正苦於以下問題:PHP Conexao::runSQL方法的具體用法?PHP Conexao::runSQL怎麽用?PHP Conexao::runSQL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Conexao
的用法示例。
在下文中一共展示了Conexao::runSQL方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: geraIonicView
function geraIonicView($sql, $cnx, $util)
{
if (false) {
$cnx = new Conexao();
}
$rs = $cnx->runSQL($sql);
$virgula = '';
$arrCampos = '';
?>
<textarea rows="30" cols="150" >
<ion-view view-title="<?php
echo ucfirst($_GET['ed_tab_ionic']);
?>
">
<ion-content>
<div class="banner">
<img src="img/banner2.png" width="400" height="180">
</div>
<div class="card">
<div class="item item-divider">
Cadastro de <?php
echo ucfirst($_GET['ed_tab_ionic']);
?>
</div>
<div class="item item-text-wrap">
<div>
<div class="list">
<?php
for ($i = 0; $i < $cnx->fieldCount($rs); $i++) {
$nome = $cnx->fieldName($rs, $i);
?>
<label class="item item-input item-floating-label">
<span class="input-label"><?php
echo ucfirst($nome);
?>
</span>
<input type="text" placeholder="<?php
echo ucfirst($nome);
?>
" ng-model="<?php
echo $_GET['ed_tab_ionic'] . "." . strtolower($nome);
?>
">
</label>
<?php
}
?>
</div>
<button class="button button-full button-positive" ng-click="salvar()">
Salvar
</button>
</div>
</div>
</div>
</ion-content>
</ion-view>
</textarea><?php
}