本文整理汇总了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) {