当前位置: 首页>>代码示例>>PHP>>正文


PHP my_query函数代码示例

本文整理汇总了PHP中my_query函数的典型用法代码示例。如果您正苦于以下问题:PHP my_query函数的具体用法?PHP my_query怎么用?PHP my_query使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了my_query函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: jsaSaveNote

function jsaSaveNote($id, $note)
{
    $msg = "";
    $date = date("Y-m-d");
    $sqlUN = "UPDATE seguimiento_llamadas\n    \t\t\tSET observaciones=CONCAT(observaciones, '\n{$date}\t', '{$note}')\n    \t\t\tWHERE  idseguimiento_llamadas={$id}";
    $n = my_query($sqlUN);
    if ($n["stat"] != false) {
        $msg = "Se Actualizo la Llamada #{$id} con la Nota [{$note}]";
    }
    return $msg;
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:11,代码来源:calendario_de_llamadas.frm.php

示例2: checkEmailKey

function checkEmailKey($key, $userID)
{
    $curDate = date("Y-m-d H:i:s");
    $sql = "SELECT `UserID` FROM `recoveryemails` WHERE `Key` = ? AND `UserID` = ? AND `expDate` >= ?";
    $data = my_query('sis', array(&$key, &$userID, &$curDate), $sql);
    $numRows = getNumRows('sis', array(&$key, &$userID, &$curDate), $sql);
    if ($numRows > 0 && $data['UserID'] != '') {
        return array('status' => true, 'userID' => $data['UserID']);
    }
    return false;
}
开发者ID:alvinsee,项目名称:bugTracker,代码行数:11,代码来源:functions.php

示例3: collection_id

function collection_id($session_id)
{
    $query = sprintf('SELECT collection_id FROM session WHERE session_id=%d', $session_id);
    $result = my_query($query);
    if ($row = mysql_fetch_assoc($result)) {
        $collection_id = $row['collection_id'];
    } else {
        $collection_id = -1;
    }
    return $collection_id;
}
开发者ID:retsil,项目名称:sqa,代码行数:11,代码来源:session.inc.php

示例4: Common_97de3870795ecc1247287ab941d9719b

/**
 * Funcion que califica a las Referencias
 *
 * @param string $params
 */
function Common_97de3870795ecc1247287ab941d9719b($params)
{
    $stdDiv = STD_LITERAL_DIVISOR;
    $DPar = explode($stdDiv, $params, STD_MAX_ARRAY_JS);
    $control = trim($DPar[0]);
    $score = trim($DPar[1]);
    $sql = "UPDATE socios_relaciones \n    \t\t\t\tSET calificacion_del_referente={$score}\n    \t\t\t\tWHERE  idsocios_relaciones={$control}";
    $Stat = my_query($sql);
    if ($Stat["stat"] == false) {
        return "Hubo un problema al Guardar el Registro";
    } else {
        return "Registro Exitoso por " . $score . "!!";
    }
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:19,代码来源:socios.common.js.php

示例5: xul_add_record

function xul_add_record($ajax_idcontable_centrodecostos, $ajax_nombre_centrodecostos)
{
    $msg = "";
    settype($ajax_idcontable_centrodecostos, "integer");
    settype($ajax_nombre_centrodecostos, "string");
    $strSQL_Insert = "INSERT INTO contable_centrodecostos(idcontable_centrodecostos, nombre_centrodecostos) \r\n                        VALUES ({$ajax_idcontable_centrodecostos}, '{$ajax_nombre_centrodecostos}')";
    $action = my_query($strSQL_Insert);
    if ($action["stat"] == false) {
        $msg = "Se Fallo al Agregar el Registro";
    } else {
        $msg = "El Registro se Agrego Exitosamente";
    }
    return $msg;
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:14,代码来源:f_379bf460.php

示例6: xul_add_record

function xul_add_record($jx_idbancos_entidades, $jx_rfc_de_la_entidad, $jx_nombre_de_la_entidad)
{
    $msg = "";
    settype($jx_idbancos_entidades, "integer");
    settype($jx_rfc_de_la_entidad, "string");
    settype($jx_nombre_de_la_entidad, "string");
    $strSQL_Insert = "INSERT INTO bancos_entidades(idbancos_entidades, rfc_de_la_entidad, nombre_de_la_entidad)\n                        VALUES ({$jx_idbancos_entidades}, '{$jx_rfc_de_la_entidad}', '{$jx_nombre_de_la_entidad}')";
    $action = my_query($strSQL_Insert);
    if ($action["stat"] == false) {
        $msg = "Se Fallo al Agregar el Registro";
    } else {
        $msg = "El Registro se Agrego Exitosamente";
    }
    return $msg;
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:15,代码来源:f_0955ca27.php

示例7: jsaGetLetras

function jsaGetLetras($idcredito, $idfecha)
{
    $xCred = new cCredito($idcredito);
    $xCred->init();
    //$xPlas	= $xCred->getPlanDePago();
    $xF = new cFecha();
    $idfecha = $xF->getFechaISO($idfecha);
    $xQL = new MQL();
    //$xQL->setRawQuery("SET @fecha_de_corte:='$idfecha';");
    my_query("SET @fecha_de_corte:='{$idfecha}';");
    $sql = "SELECT\r\n\t`letras`.`socio_afectado` AS `persona`,\r\n\t`letras`.`docto_afectado` AS `credito`,\r\n\t`letras`.`periodo_socio`  AS `parcialidad`,\r\n\t`letras`.`fecha_de_pago`,\r\n\r\n\t`letras`.`capital`,\r\n\t`letras`.`interes`,\r\n\t`letras`.`iva`,\r\n\t`letras`.`ahorro`,\r\n\t`letras`.`otros`,\r\n\t`letras`.`letra`,\t\r\n\t\r\n\t(`creditos_solicitud`.`tasa_moratorio`*100) AS `tasa_de_mora`,\r\n\t(`creditos_solicitud`.`tasa_interes`*100)   AS `tasa_de_interes` ,\r\n\tDATEDIFF(getFechaDeCorte(), fecha_de_pago) AS 'dias',\r\n\t ((letras.capital * DATEDIFF(getFechaDeCorte(), fecha_de_pago) * (`creditos_solicitud`.`tasa_moratorio` + `creditos_solicitud`.`tasa_interes`))/getDivisorDeInteres()) AS 'mora'\r\n\tFROM\r\n\t\t`creditos_solicitud` `creditos_solicitud` \r\n\t\t\tINNER JOIN `letras` `letras` \r\n\t\t\tON `creditos_solicitud`.`numero_solicitud` = `letras`.`docto_afectado`\r\n\t\r\n\t WHERE capital >0 AND docto_afectado={$idcredito} AND fecha_de_pago <= getFechaDeCorte()";
    $xT = new cTabla($sql);
    $xT->setFootSum(array(4 => "capital", 5 => "interes", 6 => "iva", 7 => "ahorro", 8 => "otros", 9 => "letra", 13 => "mora"));
    return $xT->Show();
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:15,代码来源:creditos.letras-pendientes.frm.php

示例8: xul_add_record

function xul_add_record($ajax_idsocios_region, $ajax_descripcion_region, $ajax_oficial_de_credito, $ajax_region)
{
    $msg = "";
    settype($ajax_idsocios_region, "integer");
    settype($ajax_descripcion_region, "string");
    settype($ajax_oficial_de_credito, "integer");
    settype($ajax_region, "integer");
    $strSQL_Insert = "INSERT INTO socios_region(idsocios_region, descripcion_region, oficial_de_credito, region)\r\n                        VALUES ({$ajax_idsocios_region}, '{$ajax_descripcion_region}', {$ajax_oficial_de_credito}, {$ajax_region})";
    $action = my_query($strSQL_Insert);
    if ($action["stat"] == false) {
        $msg = "Se Fallo al Agregar el Registro";
    } else {
        $msg = "El Registro se Agrego Exitosamente";
    }
    return $msg;
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:16,代码来源:socios_regiones.frm.php

示例9: xul_add_record

function xul_add_record($jx_idreport, $jx_descripcion_reports, $jx_aplica, $jx_idgeneral_reports, $jx_explicacion)
{
    $msg = "";
    settype($jx_idreport, "integer");
    settype($jx_descripcion_reports, "string");
    settype($jx_aplica, "string");
    settype($jx_idgeneral_reports, "string");
    settype($jx_explicacion, "string");
    $strSQL_Insert = "INSERT INTO general_reports(idreport, descripcion_reports, aplica, idgeneral_reports, explicacion)\n                        VALUES ({$jx_idreport}, '{$jx_descripcion_reports}', '{$jx_aplica}', '{$jx_idgeneral_reports}', '{$jx_explicacion}')";
    $action = my_query($strSQL_Insert);
    if ($action["stat"] == false) {
        $msg = "Se Fallo al Agregar el Registro";
    } else {
        $msg = "El Registro se Agrego Exitosamente";
    }
    return $msg;
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:17,代码来源:editar_reportes.xul.php

示例10: Common_3de8e697db5bb95c43c3139743a47d8b

/**
* Funcion que actualiza el estado de la Notificacuon
* @
*/
function Common_3de8e697db5bb95c43c3139743a47d8b($params)
{
    $stdDiv = STD_LITERAL_DIVISOR;
    $DPar = explode($stdDiv, $params, STD_MAX_ARRAY_JS);
    $id = 0;
    settype($id, "integer");
    $id = $DPar[0];
    $estat = $DPar[1];
    $msg = "";
    $arrEstat = array(1 => "pendiente", 2 => "efectuado", 3 => "comprometido", 4 => "cancelado", 5 => "vencido");
    $sqlUNO = "UPDATE seguimiento_notificaciones\n    \t\t\tSET  estatus_notificacion='" . $arrEstat[$estat] . "'\n    \t\t\tWHERE idseguimiento_notificaciones={$id}";
    $x = my_query($sqlUNO);
    if ($x["stat"] != false) {
        if ($estat != "efectuado") {
            $msg = "Se Actualizo la Notificacion #{$id} A " . $arrEstat[$estat] . " Exitosamente!!!";
        }
    } else {
        $msg = "Se produjo un Error al Actualizar #{$id}";
    }
    return $msg;
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:25,代码来源:seguimiento.common.js.php

示例11: fechasys

</head>
	<link href="<?php 
echo CSS_GENERAL_FILE;
?>
" rel="stylesheet" type="text/css">
	<script   src="../js/jsrsClient.js"></script>
<body>
<fieldset>
<legend>Linea de Credito Autorizada</legend>
<?php 
$idsocio = $_POST["idsocio"];
$montolinea = $_POST["montolinea"];
$observaciones = $_POST["observaciones"];
$numerohipoteca = $_POST["numerohipoteca"];
$montohipoteca = $_POST["montohipoteca"];
$fechavenc = $_POST["elanno0"] . "-" . $_POST["elmes0"] . "-" . $_POST["eldia0"];
$fechaalta = fechasys();
$eacp = EACP_CLAVE;
$sucursal = getSucursal();
$estado = 1;
// VIGENTE
$sqllcf = "numero_socio, monto_linea, observaciones, numerohipoteca, monto_hipoteca, \r\n\t\t\t\t\tfecha_de_vencimiento, fecha_de_alta, estado, idusuario, sucursal, eacp";
$sqllcv = "{$idsocio}, {$montolinea}, '{$observaciones}', '{$numerohipoteca}', {$montolinea}, \r\n\t\t\t\t'{$fechavenc}', '{$fechaalta}', {$estado}, {$iduser}, '{$sucursal}', '{$eacp}'";
$sqllc = "INSERT INTO creditos_lineas({$sqllcf}) VALUES ({$sqllcv})";
my_query($sqllc);
echo "<p class='aviso'>la Linea de Credito ha Sido Agregada como Autorizada, de esta fecha en adelante, el Socio <b>" . getNombreSocio($idsocio) . "</b>\r\n\tsera tomado en cuenta para Ministrarse Creditos por un monto no mayor a {$montolinea}; por lo que se tendra que respetar dicha cantidad.</p> \r\n\t<input type='button' name='btnprint' value='IMPRIMIR AUTORIZACION'>\r\n\t";
?>
</fieldset>
</body>
</html>
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:30,代码来源:clscreditoslineas.php

示例12: sumardias

             //Generar la Notificacion si existe una Llamada sin compromiso
             if ($afected_row > 0) {
                 $fecha_venc_notif = sumardias($fecha_default, $dias_para_notificar);
                 $sql_notif = "INSERT INTO seguimiento_notificaciones\n\t\t\t\t\t\t\t\t(socio_notificado, numero_solicitud, numero_notificacion, fecha_notificacion, oficial_de_seguimiento, fecha_vencimiento,\n\t\t\t\t\t\t\t\tprocedimiento_proximo, capital, interes, moratorio, otros_cargos, total, observaciones, estatus_notificacion, tipo_credito, domicilio_completo)\n\t\t\t\t\t\t\t\tVALUES\n\t\t\t\t\t\t\t\t({$socio}, {$solicitud}, {$idnnew}, '{$fecha_default}', {$iduser}, '{$fecha_venc_notif}', '{$tnotif}',\n\t\t\t\t\t\t\t\t{$mletra}, {$interes}, {$interes_moratorio}, {$otros_cargos}, {$total}, '{$observaciones}', 'pendiente', 'automatizado', '{$domicilio}')";
                 $x = my_query($sql_notif);
                 if ($x["stat"] == false) {
                     $msg .= date("H:s:i") . "\t\t" . $x[SYS_MSG] . "\t\n";
                 } else {
                     $msg .= date("H:s:i") . "\t\t" . $x["info"] . "\t\n";
                 }
             }
         } else {
             //Generar la Notificacion
             $fecha_venc_notif = sumardias($fecha_default, $dias_para_notificar);
             $sql_notif = "INSERT INTO seguimiento_notificaciones\n\t\t\t\t(socio_notificado, numero_solicitud, numero_notificacion, fecha_notificacion, oficial_de_seguimiento, fecha_vencimiento,\n\t\t\t\tprocedimiento_proximo, capital, interes, moratorio, otros_cargos, total, observaciones, estatus_notificacion, tipo_credito, domicilio_completo)\n\t\t\t\tVALUES\n\t\t\t\t({$socio}, {$solicitud}, {$idnnew}, '{$fecha_default}', {$iduser}, '{$fecha_venc_notif}', '{$tnotif}',\n\t\t\t\t{$mletra}, {$interes}, {$interes_moratorio}, {$otros_cargos}, {$total}, '{$observaciones}', 'pendiente', 'automatizado', '{$domicilio}')";
             $x = my_query($sql_notif);
             if ($x["stat"] == false) {
                 $msg .= date("H:s:i") . "\t\t" . $x[SYS_MSG] . "\t\n";
             } else {
                 $msg .= date("H:s:i") . "\t\t" . $x["info"] . "\t\n";
             }
         }
     } elseif ($dias_vencidos > 60) {
         //Inicio Proc. Extrajudicial
     }
 }
 //end while
 fwrite($RFile, $msg);
 @mysql_free_result($rsPic);
 /** ***************************************************************************************************************************
  * AVISOS DE PAGOS PARA AUTOMATIZADOS
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:frm_generar_notificaciones.php

示例13: UpdateEditMvto

function UpdateEditMvto($keyMvto, $cuenta, $cargo, $abono, $referencia, $concepto, $diario)
{
    $dMvto = explode("@", $keyMvto);
    $ejercicio = $dMvto[1];
    $periodo = $dMvto[2];
    $poliza = $dMvto[3];
    $tipopoliza = $dMvto[4];
    $mvto = $dMvto[5];
    $cuenta = getCuentaCompleta($cuenta);
    //purgar Mvto
    if ($cargo > 0) {
        $abono = 0;
    }
    if ($cargo > 0) {
        $tmvto = 1;
        $monto = $cargo;
    } else {
        $tmvto = -1;
        $monto = $abono;
    }
    $sqlDatosMvtoAnterior = "SELECT\n\t`contable_movimientos`.*\nFROM\n\t`contable_movimientos` `contable_movimientos`\nWHERE\n\t`contable_movimientos`.`ejercicio` = {$ejercicio}\n\tAND `contable_movimientos`.`periodo` = {$periodo}\n\tAND `contable_movimientos`.`tipopoliza` = {$tipopoliza}\n\tAND `contable_movimientos`.`numeropoliza` = {$poliza}\n\tAND `contable_movimientos`.`numeromovimiento` ={$mvto}";
    $DMAnterior = getFilas($sqlDatosMvtoAnterior);
    $AntCuenta = $DMAnterior["numerocuenta"];
    $AntTMvto = $DMAnterior["tipomovimiento"];
    $AntMonto = $DMAnterior["importe"];
    $AntFecha = $DMAnterior["fecha"];
    //----------------------- Revertir Afectacion ------------------
    $sqldcta = "SELECT\n\t`contable_catalogo`.`numero`,\n\t(`contable_catalogotipos`.`naturaleza` * `contable_catalogotipos`.`naturaleza_del_sector`) AS 'factor'\nFROM\n\t`contable_catalogotipos` `contable_catalogotipos`\n\t\tINNER JOIN `contable_catalogo` `contable_catalogo`\n\t\tON `contable_catalogotipos`.\n\t\t`idcontable_catalogotipos` = `contable_catalogo`.\n\t\t`tipo`\nWHERE `contable_catalogo`.`numero`={$AntCuenta}";
    $dcuenta = getFilas($sqldcta);
    $AntNaturaleza = $dcuenta["factor"];
    setRevertirMvto($AntCuenta, $periodo, $ejercicio, $AntNaturaleza, $AntTMvto, $AntMonto);
    //----------------------- Eliminar Cuenta ----------------------
    $sqlDelMvtoAnterior = "DELETE\n\t\tFROM\n\t\t\t`contable_movimientos`\n\t\tWHERE\n\t\t\t`contable_movimientos`.`ejercicio` = {$ejercicio}\n\t\t\tAND `contable_movimientos`.`periodo` = {$periodo}\n\t\t\tAND `contable_movimientos`.`tipopoliza` = {$tipopoliza}\n\t\t\tAND `contable_movimientos`.`numeropoliza` = {$poliza}\n\t\t\tAND `contable_movimientos`.`numeromovimiento` ={$mvto}";
    my_query($sqlDelMvtoAnterior);
    //----------------------- Insertar Cuenta ----------------------
    $NSqlcta = "SELECT\n\t`contable_catalogo`.`numero`,\n\t(`contable_catalogotipos`.`naturaleza` * `contable_catalogotipos`.`naturaleza_del_sector`) AS 'factor'\nFROM\n\t`contable_catalogotipos` `contable_catalogotipos`\n\t\tINNER JOIN `contable_catalogo` `contable_catalogo`\n\t\tON `contable_catalogotipos`.\n\t\t`idcontable_catalogotipos` = `contable_catalogo`.\n\t\t`tipo`\nWHERE `contable_catalogo`.`numero`={$cuenta}";
    $dNcuenta = getFilas($NSqlcta);
    $naturaleza = $dNcuenta["factor"];
    $sqli_mvto = "INSERT INTO contable_movimientos(ejercicio, periodo, tipopoliza, numeropoliza, numeromovimiento,\nnumerocuenta, tipomovimiento, referencia, importe, diario, moneda, concepto, fecha, cargo, abono)\n    VALUES({$ejercicio}, {$periodo},\n    {$tipopoliza}, {$poliza},\n    {$mvto}, {$cuenta},\n    '{$tmvto}', '{$referencia}',\n    {$monto}, {$diario}, 1,\n    '{$concepto}', '{$AntFecha}',\n    {$cargo}, {$abono})";
    my_query($sqli_mvto);
    setAfectarSaldo($cuenta, $periodo, $ejercicio, $naturaleza, $tmvto, $monto);
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:42,代码来源:frm_poliza_movimientos.anterior.php

示例14: setOtrosParametros

 function setOtrosParametros($Parametro, $Valor, $FechaDeExpiracion = false)
 {
     $xDb = new cSAFETabla(TCREDITOS_PRODUCTOS_OTROS_PARAMETROS);
     $dpt = $this->mClaveDeConvenio;
     $f = fechasys();
     $FechaDeExpiracion = $FechaDeExpiracion == false ? '2029-01-01' : $FechaDeExpiracion;
     //idcreditos_productos_otros_parametros, clave_del_producto, clave_del_parametro, valor_del_parametro, fecha_de_alta, fecha_de_expiracion
     $insert = $xDb->getInsert("{$dpt}, '{$Parametro}', '{$Valor}', '{$f}', '{$FechaDeExpiracion}' ", $xDb->getCamposSinClaveUnica());
     my_query($insert);
 }
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:10,代码来源:core.creditos.inc.php

示例15: header

        if (null == $id) {
            header("Location: index");
        }
        if (!empty($_POST)) {
            // keep track validation errors
            $nameError = null;
            // keep track post values
            $name = $_POST['name'];
            // validate input
            $valid = true;
            if (empty($name)) {
                $nameError = 'Please enter name';
                $valid = false;
            }
            $numRows = getNumRows('s', array(&$name), "SELECT name FROM organization WHERE id=?");
            $db_result = my_query('i', array(&$id), "SELECT name FROM organization where ID=?");
            if ($valid) {
                $params = array(&$name, &$id);
                $sql = "UPDATE organization set name = ? where id = ?";
                my_update('si', $params, $sql);
                $_SESSION['crud_update_success'] = true;
            }
        }
        ?>


<!DOCTYPE html>
<html lang="en">
<head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
开发者ID:alvinsee,项目名称:bugTracker,代码行数:31,代码来源:update.php


注:本文中的my_query函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。