本文整理汇总了PHP中Empresa::Get_dato方法的典型用法代码示例。如果您正苦于以下问题:PHP Empresa::Get_dato方法的具体用法?PHP Empresa::Get_dato怎么用?PHP Empresa::Get_dato使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Empresa
的用法示例。
在下文中一共展示了Empresa::Get_dato方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Muestra
function Muestra()
{
$empresa = new Empresa();
if (isset($_GET['empresa_id'])) {
$empresa_id = $_GET['empresa_id'];
$empresa->Load_EmpresaporID($empresa_id);
} else {
header("Location: index.php");
}
$I = new Interfaz("Usuarios:: Editar Usuario", true);
?>
<style type="text/css">
<!--
.Estilo1 {color: #FF0000}
-->
</style>
<script language="JavaScript" src="../../lib/js/jquery/jquery-1.3.2.js" type="text/javascript"></script>
<script language="JavaScript" src="../../lib/js/validateForm.js" type="text/javascript"></script>
<script language="javascript">
function validate(){
if($("#nombre").val() == ""){
alert("El nombre es un campo requerido.");
$("#nombre").focus();
return false;
}
if($("#codigo").val() == ""){
alert("El código es un campo requerido.");
$("#codigo").focus();
return false;
}
var url = "services/Ajax_empresa.php";
var codigo = $("#codigo").val();
var regresa = true;
var id = <?php
echo $_GET['empresa_id'];
?>
;
$.ajaxSetup({async:false});
$.post(url,{codigo:codigo,id:id},function(data){
if(data!=''){
alert("El código ya ha sido asignado a otra empresa.");
$("#codigo").focus();
regresa = false;
}
});
return regresa;
}
</script>
<br><br>
<form name="form1" method="post" action="">
<table width="80%" align="center" cellpadding="4" cellspacing="4" border="0" bgcolor="#f4f4f4" style="padding-top: 20px;">
<tr>
<td align="right"> </td>
<td><strong>Editar Empresa</strong></td>
</tr>
<tr>
<td align="right"> </td>
<td>
<input type="hidden" name="empresa_id" id="empresa_id" value="<?php
echo $empresa_id;
?>
" readonly="readonly" style="border-color:#FFFFFF" />
</td>
</tr>
<tr>
<td align="right" width="30%">Nombre<span class="Estilo1">*</span>: </td>
<td> <input type="text" name="nombre" id="nombre" size="70" value="<?php
echo $empresa->Get_dato("e_nombre");
?>
"/>
</td>
</tr>
<tr>
<td align="right" width="30%">Código<span class="Estilo1">*</span>:
</td>
<td>
<input type="text" name="codigo" id="codigo" size="40" value="<?php
echo $empresa->Get_dato("e_codigo");
?>
"/>
</td>
</tr>
<tr>
<td align="right" width="30%">Estatus :</td><td>
<select name="estatus" id="estatus">
<?php
if ($empresa->Get_dato("e_estatus") == 1) {
?>
<option selected value="1">Activo</option>
<option value="0">Inactivo</option>
<?php
} else {
?>
<option value="1">Activo</option>
<option selected value="0">Inactivo</option>
<?php
}
?>
</select>
//.........这里部分代码省略.........
示例2: Tramite
$T = new Tramite();
$tramite_aux = new Tramite();
if ($U->Valida($usuario, $passwd) == false) {
if ($hidTramite != 0) {
header("Location: ./index.php?error&id=" . $hidTramite);
} else {
header("Location: ./index.php?error");
}
return false;
} else {
$id_empresa = $U->Get_dato("u_empresa");
$Empresa->Load_Empresa($id_empresa);
$_SESSION["idusuario"] = $U->Get_dato("u_id");
$_SESSION["usuario"] = $U->Get_dato("u_paterno") . " " . $U->Get_dato("u_materno") . " " . $U->Get_dato("u_nombre");
$_SESSION["empresa"] = $id_empresa;
$_SESSION["nombreempresa"] = $Empresa->Get_dato("e_codigo") . " - " . $Empresa->Get_dato("e_nombre");
if ($U->find_tipos($U->Get_dato("u_id")) && $notification_by_email == 0) {
header("Location: accesotipo.php");
} else {
if ($U->find_delegaciones($U->Get_dato("u_id")) && $notification_by_email == 0) {
header("Location: ./flujos/delegacion/delegaciones.php");
} else {
if ($hidTramite != null && $notification_by_email != 0) {
$tramite_aux->Load_Tramite($hidTramite);
$t_flujo = $tramite_aux->Get_dato("t_flujo");
$etapa_tramite = $tramite_aux->Get_dato("t_etapa_actual");
error_log("Flujo del tramite: " . $t_flujo);
error_log("Etapa del tramite: " . $etapa_tramite);
if ($t_flujo == "") {
header("Location: inicial.php?error");
}