本文整理匯總了PHP中Perfil::conectar方法的典型用法代碼示例。如果您正苦於以下問題:PHP Perfil::conectar方法的具體用法?PHP Perfil::conectar怎麽用?PHP Perfil::conectar使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Perfil
的用法示例。
在下文中一共展示了Perfil::conectar方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Perfil
<?php
require "config/db_ivr.conf.php";
require "servicio/Conexion.class.php";
require "modelo/perfil.class.php";
$obj_perfil = new Perfil();
$obj_perfil->conectar();
?>
<aside class="right-side">
<section class="content-header">
<h1>
Perfil
</h1>
</section>
<section class="content">
<div class="row">
<div class="col-xs-12">
<a class="btn btn-primary btn-block" href="./?vista=new_perfil">Nuevo</a>
<hr>
<div class="box box-primary">
<div class="box-header">
<h3 class="box-title">Registros</h3>
<div class="box-tools">
<div class="input-group">
<input type="text" id="table_search" class="form-control input-sm pull-right" style="width: 220px;" placeholder="Buscar ..." />
<div class="input-group-btn">
<button class="btn btn-sm btn-default"><i class="fa fa-search"></i></button>
</div>
</div>
</div>
示例2: Perfil
<?php
require "../config/db_ivr.conf.php";
require "../servicio/Conexion.class.php";
require "../modelo/perfil.class.php";
$obj_perfil = new Perfil();
if ($obj_perfil->conectar()) {
$operacion = (int) $_REQUEST['tipo_operacion'];
$nombre_perfil = (string) $_REQUEST['txtPerfil'];
if ($operacion == 1) {
$activo = (bool) 1;
} else {
$activo = (bool) $_REQUEST['chk_activo'];
}
$array_info = array($nombre_perfil, $activo);
print_r($array_info);
if ($operacion == 1) {
//INSERTAR
$bandera = $obj_perfil->new_perfil($array_info);
} elseif ($operacion == 2) {
//MODIFICAR
$bandera = $obj_perfil->update_perfil($_REQUEST["id_perfil"], $array_info);
} elseif ($operacion == 3) {
//ELIMINAR
$bandera = $obj_perfil->delete_perfil($_REQUEST["id_perfil"]);
}
if ($bandera && $operacion == 1) {
header('Location: ../?vista=list_perfil&opc=1&bandera=1');
} elseif ($bandera && $operacion == 2) {
header('Location: ../?vista=list_perfil&opc=2&bandera=1');
} elseif ($bandera && $operacion == 3) {