本文整理汇总了PHP中gcms_fetch_object函数的典型用法代码示例。如果您正苦于以下问题:PHP gcms_fetch_object函数的具体用法?PHP gcms_fetch_object怎么用?PHP gcms_fetch_object使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了gcms_fetch_object函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getASB2
function getASB2($id)
{
$sql = "select kk.* from kelompok_kegiatan kk where kk.id = " . $id . "";
$result = gcms_query($sql);
while ($data = gcms_fetch_object($result)) {
$ret["belanja"]["pegawai"]["rerata"] = $data->rata_pegawai;
$ret["belanja"]["pegawai"]["deviasi"] = $data->std_deviasi_pegawai;
$ret["belanja"]["barang"]["rerata"] = $data->rata_barang;
$ret["belanja"]["barang"]["deviasi"] = $data->std_deviasi_barang;
$ret["belanja"]["modal"]["rerata"] = $data->rata_modal;
$ret["belanja"]["modal"]["deviasi"] = $data->std_deviasi_modal;
for ($i = 1; $i <= 4; $i++) {
$nama = "nama_indikator_" . $i;
$koef = "koefisien_" . $i;
if (!empty($data->{$nama})) {
$ret["indikator"][$i]["nama"] = $data->{$nama};
$ret["indikator"][$i]["koef"] = $data->{$koef};
}
}
$ret["konstanta"] = $data->konstanta;
}
// $ret .= "<input id='btn' type='submit' name='asb' value='asb'></div></div> <!-- asb -->\n";
//$ret .= "";
return $ret;
}
示例2: main_page_content
function main_page_content()
{
echo '<div id="main_content">';
$lbl = array();
$cnt = array();
/* ambil isi .main tiap modul */
$csql = "select cpath from " . PREFIX . "moduls";
$nresult = gcms_query($csql);
while ($opath = gcms_fetch_object($nresult)) {
$mainfile = translate_modul_path(str_replace(".php", ".main.php", strtolower($opath->cpath)));
if (file_exists($mainfile)) {
$ainfo = b_readinit(translate_modul_path(str_replace(".php", ".init.php", strtolower($opath->cpath))));
$lbl[] = $ainfo['name'];
$cnt[] = $mainfile;
}
}
$sel = false;
if (count($lbl) > 0) {
echo '<div id="gcms_main_tab" class="yui-navset"> ' . "\n" . ' <ul class="yui-nav"> ' . "\n";
if ($_REQUEST['page'] || $_REQUEST['mod']) {
$sel = true;
echo ' <li class="selected"><a href="#gcms_main_tab_menu"><em>' . ($_REQUEST['page'] ? menu_get_title($_REQUEST['page']) : 'Utama') . '</em></a></li> ' . "\n";
}
foreach ($lbl as $k => $v) {
echo ' <li';
if (!$sel) {
$sel = true;
echo ' class="selected"';
}
echo '><a href="#gcms_main_tab' . $k . '" ><em>' . $v . '</em></a></li> ' . "\n";
}
echo ' </ul> ' . "\n" . ' <div class="yui-content"> ' . "\n";
foreach ($cnt as $k => $v) {
echo ' <div id="gcms_main_tab' . $k . '">';
include $v;
echo '</div> ' . "\n";
}
if ($_REQUEST['page'] || $_REQUEST['mod']) {
echo ' <div id="gcms_main_tab_menu"><p>';
}
}
/* masukkan isi halaman sesuai menu disini */
if ($_REQUEST['page']) {
menu_get_content($_REQUEST['page']);
} else {
if ($_REQUEST['mod']) {
menu_get_content_by_mod($_REQUEST['mod'], $_REQUEST['func']);
}
}
if (count($lbl) > 0) {
if ($_REQUEST['page'] || $_REQUEST['mod']) {
echo '</p></div> ' . "\n";
}
echo ' </div> ' . "\n" . '</div> ' . "\n";
}
echo '</div> <!-- main content -->';
}
示例3: getKegiatan
function getKegiatan($id)
{
$sql = 'select first 1 k.id ' . 'from KELOMPOK_KEGIATAN kk ' . 'join kegiatan k on k.ID_KELOMPOK = kk.ID ' . 'where id = ' . $id;
$result = gcms_query($sql);
while ($row = gcms_fetch_object($result)) {
$id_kel[] = $row->id;
}
return $id_kel;
}
示例4: getNamaIndikator
function getNamaIndikator($id)
{
$sql = 'select first 1 nama_indikator_1, nama_indikator_2, nama_indikator_3, nama_indikator_4 ' . 'from kelompok_kegiatan where id = ' . $id;
$result = gcms_query($sql);
while ($row = gcms_fetch_object($result)) {
$nama[1] = $row->nama_indikator_1;
$nama[2] = $row->nama_indikator_2;
$nama[3] = $row->nama_indikator_3;
$nama[4] = $row->nama_indikator_4;
}
return $nama;
}
示例5: end_entri_default
function end_entri_default($entriid, $table, $idfield, $currentid, $confirmexp = "")
{
$new = 'form.php?page=' . $_REQUEST['page'] . '&action=edit';
$csql = "select max(" . $idfield . ") as id from " . $table . " where " . $idfield . " < " . $currentid;
$nresult = gcms_query($csql);
$id = gcms_fetch_object($nresult)->id;
if ($id) {
$prev = 'form.php?page=' . $_REQUEST['page'] . '&action=edit&id=' . $id;
} else {
$prev = "";
}
$csql = "select min(" . $idfield . ") as id from " . $table . " where " . $idfield . " > " . $currentid;
$nresult = gcms_query($csql);
$id = gcms_fetch_object($nresult)->id;
if ($id) {
$next = 'form.php?page=' . $_REQUEST['page'] . '&action=edit&id=' . $id;
} else {
$next = "";
}
end_entri($entriid, $new, $prev, $next, $confirmexp);
}
示例6: b_htmlselect
/**
* SubFunction: m_doselect()
* Main module: Delivery Order
* Create combobox, tag select
*
* @param string <b>$cvarname</b> : variable's name, select tag's name
* @param variant <b>$cprevval</b> : previous value
* @param string <b>$ctblname</b> : table's name
* @param string <b>$cfldkeys</b> : field key
* @param string <b>$cwhere</b> : where clause
* @param string <b>$cfldviews</b>: fields to be viewed, seperated by comma
* @param string <b>$ajaxdo</b> : ajax function in string, if there, ajax will execute on onchange event
* @return none
*/
function b_htmlselect()
{
$narg = func_num_args();
$aarg = func_get_args();
if ($narg > 3) {
$cvarname = $aarg[0];
$cprevval = $aarg[1];
$ctblname = $aarg[2];
$cfldkeys = $aarg[3];
$cwhere = $narg > 4 ? $aarg[4] : '';
$cfldview = explode(",", $narg > 5 ? $aarg[5] : $aarg[3]);
$cajaxdo = "";
if ($narg > 6) {
$cajaxdo = $aarg[6];
}
?>
<select name="<?php
echo $cvarname;
?>
" id="<?php
echo $cvarname;
?>
" style="width: 155px;"<?php
echo trim($cajaxdo) == "" ? "" : " onchange=\"" . $cajaxdo . "\"";
?>
><?php
?>
<option style="width:315px" value=""<?php
echo trim($cprevval) == "" ? " selected" : "";
?>
></option><?php
$csqlselect = "SELECT * FROM " . PREFIX . $ctblname;
if (trim($cwhere) != "") {
$csqlselect .= " WHERE " . $cwhere;
}
// echo $csqlselect.'<br>';
$nsqlselect = gcms_query($csqlselect);
while ($osqlselect = gcms_fetch_object($nsqlselect)) {
$strfldview = $cfldview;
?>
<option value="<?php
echo $osqlselect->{$cfldkeys};
?>
" style="width:100%"<?php
echo $osqlselect->{$cfldkeys} == $cprevval ? " selected" : "";
?>
><?php
$nfldcount = count($cfldview);
$nfldloop = 0;
for ($nfldloop = 0; $nfldloop < $nfldcount; $nfldloop++) {
$xfldview = $cfldview[$nfldloop];
echo ($nfldloop > 0 ? " - " : "") . $osqlselect->{$xfldview};
}
?>
</option><?php
}
?>
</select><?php
}
}
示例7: ibase_commit
//echo $a;
if ($a && $_REQUEST['rows'] == $_REQUEST['count']) {
ibase_commit();
//echo "xxx";
}
}
if (!$a) {
// echo "no";
ibase_rollback();
}
} else {
unset($exception);
unset($other_request);
$ID_HEADER = $fbird->setGenerator('GEN_PENDATAAN_SPT');
$cr_spt_no = gcms_query("select max(" . $tabel_spt_no . ") AS IdMax from " . $tabel_spt . " ");
$max_spt = gcms_fetch_object($cr_spt_no);
$new_no_spt = $max_spt->IDMAX + 1;
if ($_REQUEST['SptIdHid'] == '') {
$exception = array('spt_id', 'nama_kegiatan');
$other_request = array('pendataan_id' => $ID_HEADER, 'pendataan_no' => $new_no_spt, 'tgl_proses' => $_REQUEST['TglProses'], 'tgl_entry' => $_REQUEST['TglEntri'], 'jenis_pendataan' => $_REQUEST['NamaPendataan'], 'jenis_pungutan' => $_REQUEST['SystemPemungutan'], 'periode_awal' => $_REQUEST['TglJualMulai'], 'periode_akhir' => $_REQUEST['TglJualSampai'], 'nominal' => str_replace(",", "", $_REQUEST['Pajak']));
} else {
$exception = array('nama_kegiatan');
$other_request = array('pendataan_id' => $ID_HEADER, 'pendataan_no' => $new_no_spt, 'tgl_proses' => $_REQUEST['TglProses'], 'tgl_entry' => $_REQUEST['TglEntri'], 'jenis_pendataan' => $_REQUEST['NamaPendataan'], 'jenis_pungutan' => $_REQUEST['SystemPemungutan'], 'periode_awal' => $_REQUEST['TglJualMulai'], 'periode_akhir' => $_REQUEST['TglJualSampai'], 'nominal' => str_replace(",", "", $_REQUEST['Pajak']), 'spt_id' => $_REQUEST['SptIdHid']);
}
ibase_trans();
$a = $fbird->FBInsert('pendataan_spt', $other_request, $exception);
unset($exception);
unset($other_request);
$exceptionxx = array('hotel_id');
$other_requestxxx = array('pendataan_id' => $ID_HEADER, 'hotel_nama' => $_REQUEST['nama_wp_wr'], 'hotel_alamat' => $_REQUEST['Alamat'], 'hotel_id_desa' => $_REQUEST['id_desa'], 'nominal' => str_replace(",", "", $_REQUEST['Tarif']), 'persen_tarif' => $_REQUEST['persen'], 'id_rekening' => $_REQUEST['IdRekening'], 'dasar_pengenaan' => str_replace(",", "", $_REQUEST['Pajak']));
$ab = $fbird->FBInsert('pendataan_hotel', $other_requestxxx, $exceptionxx);
示例8: gcms_query
</tr>
<?php
if (USERLEVEL >= bc_supervisor and !b_admin($_POST['nid']) and b_getuserlogin() != $_POST['nid']) {
?>
<tr>
<td colspan="2"><h2>Grant Modul</h2></td>
</tr>
<tr>
<td colspan="2">
<table>
<?php
$csql = "select * from " . PREFIX . "moduls order by nid";
$nresult = gcms_query($csql);
$i = 0;
while ($omoduls = gcms_fetch_object($nresult)) {
b_fetch("select count(nid) from " . PREFIX . "granted where nid_users='" . $_POST['nid'] . "' and nid_moduls='{$omoduls->nid}'") > 0 ? $ccheck = "checked" : ($ccheck = "");
$ainfo = b_readinit(str_replace(".php", ".init.php", $omoduls->cpath));
if (($ainfo['level'] <= USERLEVEL or b_admin(b_getuserlogin())) and $ainfo['type'] != "lib") {
//(strtolower($ainfo['type'])=="admin")?$ctype="(Admin)":$ctype="(Frontend)";
if (strtolower($ainfo['type']) == "admin") {
?>
<tr>
<td><input type="checkbox" name="modul[<?php
echo $i;
?>
]" value="<?php
echo $omoduls->nid;
?>
" <?php
echo $ccheck;
示例9: array
}
/* ubah id data yang dihapus ke dalam bentuk array */
${$daftar . '_deleted'} = array();
$ds = explode(",", $_REQUEST[$daftar . '_deleted']);
foreach ($ds as $d) {
if ($d) {
${$daftar . '_deleted'}[] = $d;
}
}
}
}
/* pada awalnya, untuk konek ke ekstensi disini, yaitu melalui 'page' yang akan menuju ke fungsi terkait di ekstensi
* ke depan perlu mekanisme baru yang memungkinkan suatu ekstensi diakses tanpa lewat menu seperti terjadi di request data,
* buka pilihan dari modul lain, dll
*
* --------------- PERLU DIPIKIRKAN DAN DIBENAHI LAGI ------------------
*/
/* perlu reverse untuk pemanggilan menggunakan nama modul dan fungsi - backward compatibility */
if (!$_REQUEST['page'] && $_REQUEST['mod'] && $_REQUEST['func']) {
if (b_antisqlinjection($_REQUEST['mod']) && b_antisqlinjection($_REQUEST['func'])) {
$func = $_REQUEST['func'];
$csql = "select * from g_frontmenus where cfunction = '" . $func . "'";
$page = gcms_fetch_object(gcms_query($csql))->nid;
if (!$page) {
$func = "m_" . $_REQUEST['mod'] . "_" . $_REQUEST['func'];
$csql = "select * from g_frontmenus where cfunction = '" . $func . "'";
$page = gcms_fetch_object(gcms_query($csql))->nid;
}
$_REQUEST['page'] = $page;
}
}
示例10: gcms_fetch_object
<?php
include './../../../config.php';
include './../../../lib.php';
if (!b_antisqlinjection($_GET['id_kelompok'])) {
die;
}
if (!empty($_GET['nomor_id'])) {
$csql = "select * from kegiatan where id_kelompok=" . $_GET['nid'];
if ($nresult = gcms_query($csql)) {
$row = gcms_fetch_object($nresult);
?>
document.getElementById('nid').value="<?php
echo $row->id_kelompok;
?>
";
<?php
}
} else {
?>
document.getElementById('nid').value='';
<?php
}
示例11: gcms_insert_id
function gcms_insert_id($table)
{
$res = gcms_query("select gen_id(g_" . $table . "_nid, 0) as NID from rdb\$database");
$obj = gcms_fetch_object($res);
return $obj->NID;
}
示例12: str_replace
<?php
$expath = "." . str_replace("\\", "/", str_replace(realpath("."), "", dirname(__FILE__))) . "/";
$qy = 'select lurah_id, lurah_nama from kelurahan ';
$data = gcms_query($qy);
$value = '';
while ($rs = gcms_fetch_object($data)) {
$value .= "'{$rs->lurah_id}':'{$rs->lurah_nama}',";
}
if (isset($_REQUEST['page'])) {
$param = 'page=' . $_REQUEST['page'];
} else {
$param = 'mod=pendaftaran&func=pemohon';
}
?>
<script type="text/javascript">
function mycheck(val){
if(parseFloat(value) >= 200 && parseFloat(value)<=300) { return [true,"",""]; } else { return [false,"The value should be between 200 and 300!",""]; }
}
var lastsel;
jQuery(document).ready(function(){
jQuery("#htmlTable").jqGrid({
url:'request.php?<?php
echo $param;
?>
&sender=pendaftaran_pemohon',
editurl:'request.php?<?php
echo $param;
示例13: gcms_query
<li><a href="#tabs-2"><em>Detail</em></a></li>
<li><a href="#tabs-3"><em>Data</em></a></li>
</ul>
<div id="tabs-1">
<input type="hidden" id="IdEdit" name="IdEdit" />
<input type='hidden' name='NamaPendataan' id='NamaPendataan' value='RESTORAN'>
<div style='padding:5px;'>
<fieldset>
<legend>PENETAPAN PAJAK RESTORAN</legend>
<div id='asb_simulasi_form'>
<div class="singleSide">
<fieldset class="mainForm">
<label class="leftField"><span>No. Reg Form</span>
<?php
$cr = gcms_query("select max(pendataan_no) AS IdMax from pendataan_spt");
$max = gcms_fetch_object($cr);
$new_max = $max->IDMAX + 1;
$new_no = sprintf("%06d", $new_max);
?>
<input type="text" name="no_pendaftaran" id='NoRegForm' size='25' value="<?php
echo $new_no;
?>
" readonly/>
<input type="hidden" id="idHid" name="NoHid" value="<?php
echo $new_max;
?>
" />
</label>
<label class="leftField"><span>Tgl Proses <b class="wajib">*</b></span>
<input id='date_1' name='TglProses' type='text' title='Tanggal Proses' /><!--<input type="button" id="reset_tgl" size="2" value=".." />-->
示例14: str_replace
echo THEME_DIR;
?>
/images/icon/install.png" style="padding-left:5px;padding-right:5px;/*background-color:#B3D4FF*/; vertical-align:bottom;" /><?php
echo $omenu->cmenu;
?>
</a>
<div id="<?php
echo "sub_granted_menu_" . str_replace(" ", "_", $omenu->cmenu) . "menu_4";
?>
" class="yuimenu">
<div class="bd">
<ul class="first-of-type">
<?php
$csql2 = "select a.* from " . PREFIX . "frontmenus as a where a.NID_GROUPFRONT_SUBMENUS = " . $omenu->nid . " order By a.NID_GROUPFRONT_SUBMENUS,a.nurut";
$nres_submenu_2 = gcms_query($csql2);
while ($omenu2 = gcms_fetch_object($nres_submenu_2)) {
$nm = str_replace(".", "_", str_replace("-", "_", str_replace(" ", "_", stripslashes($omenu2->cmenu))));
if (!$omenu2->width) {
$omenu2->width = 600;
} else {
if (!$omenu2->height) {
$omenu2->height = 500;
} else {
}
}
if ($omenu2->is_main == 1) {
$load_menu2 = "index.php?page=" . $omenu2->nid;
} else {
if ($omenu2->is_main == 2) {
$load_menu2 = "javascript:gcms_open_form('form_entri.php?page=" . $omenu2->nid . "','" . $nm . "'," . $omenu2->width . "," . $omenu2->height . ")";
} else {
示例15: gcms_query
?>
';
document.getElementById('nominal').value='<?php
echo $row->nominal;
?>
';
document.getElementById('penetapan_pr_id').value='<?php
echo $row->id;
?>
';
document.getElementById('badan_id').value='<?php
echo $row->id_badan;
?>
';
<?php
}
if (!empty($_GET['Petugas'])) {
$sql = "select p.pejabat_id,p.nip,p.nama,g.nama AS golongan,pk.nama AS pangkat,j.nama AS jabatan\r\n\t\t\t\tfrom pejabat p\r\n\t\t\t\tleft join pangkat pk on p.pangkat_id = pk.id\r\n\t\t\t\tleft join golongan g on p.golongan_id = g.id\r\n\t\t\t\tleft join jabatan j on p.jabatan_id = j.id\r\n\t\t\t\twhere p.pejabat_id ='" . $_GET['Petugas'] . "'\r\n\t\t\t\t";
$xx = gcms_query($sql);
$row = gcms_fetch_object($xx);
?>
document.getElementById('petugas_id').value='<?php
echo $row->pejabat_id;
?>
';
document.getElementById('nama_petugas').value='<?php
echo $row->nama;
?>
';
<?php
}