本文整理汇总了PHP中Conectarse函数的典型用法代码示例。如果您正苦于以下问题:PHP Conectarse函数的具体用法?PHP Conectarse怎么用?PHP Conectarse使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了Conectarse函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
include "conexion.php";
$this->link = Conectarse();
$this->sql_con = new mysqli($this->link['host'], $this->link['user'], $this->link['pass'], $this->link['bd']);
$this->obtener_productos(0);
}
示例2: mostrarColonia
function mostrarColonia($cp){
$link=Conectarse('webpmm');
$consulta=mysql_query("SELECT cpo.codigopostal, cc.id as idcol,
cc.descripcion As colonia, cp.id as idpob, cp.descripcion as poblacion,
cm.id as idmun, cm.descripcion as municipio, ce.id as idest,
ce.descripcion as estado, cpa.id as idpais, cpa.descripcion as pais FROM
catalogocolonia cc
INNER JOIN catalogocodigopostal cpo ON cc.cp=cpo.codigopostal
INNER JOIN catalogopoblacion cp ON cc.poblacion=cp.id
INNER JOIN catalogomunicipio cm ON cp.municipio=cm.id
INNER JOIN catalogoestado ce ON cm.estado=ce.id
INNER JOIN catalogopais cpa ON ce.pais=cpa.id
WHERE cpo.codigopostal='$cp'",$link);
if($num_rows = mysql_num_rows($consulta)>1){
echo "<select name='colonia' id='colonia' style='width:122px;font:tahoma;font-size:9px' onKeyPress='return tabular(event,this)'>";
echo "<option value=''>Seleccionar</option>";
while($registro=mysql_fetch_row($consulta))
{
echo "<option value='".htmlentities($registro[colonia])."'>".htmlentities($registro[colonia])."</option>";
}
echo "</select>";
$poblacion=$registro[d_ciudad];
}else{
$registro=mysql_fetch_row($consulta);
echo "<input name='colonia' type='text' style='font:tahoma;font-size:9px;background:#FFFF99' disabled='disabled' id='colonia' size='20' value='".htmlentities($registro[colonia])."' />";
}
}
示例3: conexion
protected function conexion()
{
require "conexion.php";
$this->link = Conectarse();
$this->sql_con = new mysqli($this->link['host'], $this->link['user'], $this->link['pass'], $this->link['bd']);
$this->sql_con->set_charset("utf8");
}
示例4: Header
function Header(){
$l = Conectarse("webpmm");
$s = "SELECT descripcion FROM catalogosucursal WHERE id = ".$_GET[sucursal]."";
$r = mysql_query($s,$l) or die($s); $ft = mysql_fetch_object($r);
$mes = array("","Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
//Logo
$this->Image('../logo.jpg',18,8,33);
$this->Ln(10);
//Arial bold 15
$this->SetFont('Arial','B',12);
//Movernos a la derecha
$this->Cell(80);
//Titulo
$this->Ln(5);
$this->SetFont('Arial','B',12);
$this->Cell(200,10,'ENTREGAS PUNTUALES S DE RL DE CV',0,0,'C');
$this->Ln(10);
$this->SetFont('Arial','B',9);
$this->Cell(176,10,'FOLIO '.$_GET[folio],0,0,'R');
$this->Ln(8);
$this->Cell(150,10,'RESUMEN DE INGRESOS',0,0,'L');
$this->Ln(4);
$this->Cell(176,10,'MAZATLAN, SIN., A: '.date(d).' de '.$mes[date(n)].' de '.date(Y),0,0,'R');
}
示例5: Header
function Header()
{
require_once "../../Conectar.php";
$l = Conectarse("webpmm");
$s = "SELECT descripcion FROM catalogosucursal WHERE id = " . $_SESSION[IDSUCURSAL] . "";
$r = mysql_query($s, $l) or die($s);
$ft = mysql_fetch_object($r);
//Logo
$this->Image('../logo.jpg', 10, 8, 33);
$this->Ln(20);
//Arial bold 15
$this->SetFont('Arial', 'B', 15);
//Movernos a la derecha
$this->Cell(80);
//Titulo
$this->Cell(70, 10, 'PAQUETERIA Y MENSAJERIA EN MOVIMIENTO', 0, 0, 'C');
$this->Ln(10);
$this->SetFont('Arial', 'B', 10);
$this->Cell(70, 10, 'REPORTE: CONVENIO DE PRESTACION DE SERVICIOS PRECIO POR KILOGRAMO FECHA IMPRESO:' . date('d/m/Y') . '', 0, 0, 'L');
$this->Ln(5);
$this->Cell(70, 10, 'SUCURSAL: ' . utf8_decode($ft->descripcion) . '', 0, 0, 'L');
$this->Ln(5);
$this->Cell(70, 10, 'FECHA DEL DIA: ' . $_GET[fecharecepcion] . '', 0, 0, 'L');
$this->Ln(5);
}
示例6: Login
function Login()
{
$link = Conectarse();
$consulta = "SELECT * FROM [022BDCOMUN].DBO.USUARIOS\r\nWHERE usuario='{$this->user}' AND contrasena='{$this->pass}' AND idtipousuario=2 ";
$resultado = mssql_query($consulta, $link) or die(mssql_error());
$fila = mssql_fetch_array($resultado);
if (!$fila[0]) {
echo '<script>
alert("Usuario o Password errados, por favor verifique.")
self.location = "/adm-reserva/"
</script>';
} else {
if (!isset($_SESSION)) {
@session_start();
}
$_SESSION['id_usuario'] = $fila['id_usuario'];
$_SESSION['nombres'] = $fila['nombres'];
$_SESSION['apellidos'] = $fila['apellidos'];
$_SESSION['starsoft'] = $fila['starsoft'];
$_SESSION['idempresa'] = $fila['idempresa'];
$_SESSION['idarea'] = $fila['idarea'];
$_SESSION['aud_jefe'] = $fila['aud_jefe'];
header("Location: /adm-reserva/home");
}
}
示例7: Header
function Header()
{
require_once "../../Conectar.php";
$l = Conectarse("webpmm");
$s = "SELECT prefijo,descripcion FROM catalogosucursal WHERE id = " . $_GET[sucursal] . "";
$r = mysql_query($s, $l) or die($s);
$f = mysql_fetch_object($r);
$this->recibio = $f->prefijo;
//Logo
$this->Image('../logo.jpg', 10, 8, 33);
$this->Ln(20);
//Arial bold 15
$this->SetFont('Arial', 'B', 15);
//Movernos a la derecha
$this->Cell(80);
//Titulo
$this->Cell(70, 10, 'PAQUETERIA Y MENSAJERIA EN MOVIMIENTO', 0, 0, 'C');
$this->Ln(10);
$this->SetFont('Arial', 'B', 10);
$this->Cell(70, 10, 'REPORTE: RECEPCION DE MERCANCIA FECHA IMPRESO:' . date('d/m/Y') . '', 0, 0, 'L');
$this->Ln(5);
$this->Cell(70, 10, 'SUCURSAL: ' . utf8_decode($f->descripcion) . '', 0, 0, 'L');
$this->Ln(5);
$this->Cell(70, 10, 'FECHA DEL DIA: ' . $_GET[fecharecepcion] . '', 0, 0, 'L');
$this->Ln(10);
}
示例8: Header
function Header()
{
require_once "../../Conectar.php";
$l = Conectarse("webpmm");
$s = "SELECT CONCAT('',' ',\n CASE DAYOFWEEK('" . cambiaf_a_mysql($_GET[fecha]) . "')\n WHEN 1 THEN 'DOMINGO'\n WHEN 2 THEN 'LUNES'\n WHEN 3 THEN 'MARTES'\n WHEN 4 THEN 'MIERCOLES'\n WHEN 5 THEN 'JUEVES'\n WHEN 6 THEN 'VIERNES'\n WHEN 7 THEN 'SABADO'\n END,' ',DAY('" . cambiaf_a_mysql($_GET[fecha]) . "'),' ','',' ',\n\t\tCASE MONTH('" . cambiaf_a_mysql($_GET[fecha]) . "')\n\t\tWHEN 1 THEN 'ENERO' \n\t\tWHEN 2 THEN 'FEBRERO' \n\t\tWHEN 3 THEN 'MARZO' \n\t\tWHEN 4 THEN 'ABRIL' \n\t\tWHEN 5 THEN 'MAYO' \n\t\tWHEN 6 THEN 'JUNIO' \n\t\tWHEN 7 THEN 'JULIO' \n\t\tWHEN 8 THEN 'AGOSTO' \n\t\tWHEN 9 THEN 'SEPTIEMBRE' \n\t\tWHEN 10 THEN 'OCTUBRE' \n\t\tWHEN 11 THEN 'NOVIEMBRE' \n\t\tWHEN 12 THEN 'DICIEMBRE' \n\t\tEND,' ','DEL',' ',YEAR('" . cambiaf_a_mysql($_GET[fecha]) . "')) AS dia";
$r = mysql_query($s, $l) or die($s);
$f = mysql_fetch_object($r);
//Logo
$this->Image('../logo.jpg', 10, 8, 33);
$this->Ln(20);
//Arial bold 15
$this->SetFont('Arial', 'B', 15);
//Movernos a la derecha
$this->Cell(80);
//Titulo
$this->Cell(100, 10, 'PAQUETERIA Y MENSAJERIA EN MOVIMIENTO', 0, 0, 'C');
//Salto de linea
$this->Ln(10);
$this->SetFont('Arial', 'B', 10);
$this->Cell(70, 10, 'REPORTE: LISTADO DE COBRANZA FECHA IMPRESO:' . date('d/m/Y') . ' FOLIO DE RELACION: ' . $_GET[folio], 0, 0, 'L');
$this->Ln(5);
$this->Cell(70, 10, 'COBRADOR: ' . $_GET[cobrador] . '', 0, 0, 'L');
$this->Ln(5);
$this->Cell(70, 10, 'DIA: ' . $f->dia . '', 0, 0, 'L');
$this->Ln(10);
}
示例9: MostrarAtributo
function MostrarAtributo($requerimiento, $atributo)
{
$link = Conectarse();
$sql = "SELECT CONVERT(VARCHAR,REQ_FECHA_EMISION,103)AS FECHA ,REQ_GLOSA,TDESCRI FROM [010BDCOMUN].DBO.INV_REQMATERIAL_CAB AS C \r\n INNER JOIN [010BDCOMUN].DBO.TABAYU AS T ON C.REQ_PERSONAL_SOLIC=T.TCLAVE \r\n WHERE TCOD='12' AND REQ_NUMERO='{$requerimiento}'";
$result = mssql_query($sql);
$row = mssql_fetch_array($result);
echo $row[$atributo];
}
示例10: folio
function folio($tabla,$base)
{
$link2=Conectarse($base);
$confolio="select ifnull(max(folio),0) + 1 as folio from $tabla";
$resc=mysql_query($confolio,$link2);
$rowco=mysql_fetch_array($resc);
return $rowco;
}
示例11: ObtenerFolio
function ObtenerFolio($tabla,$base){
if($base=="webpmm")
$base = "pmm_dbpruebas";
$link2=Conectarse($base);
$confolio=@mysql_query("select ifnull(max(folio),0) + 1 as folio from $tabla",$link2);
$rowco=mysql_fetch_array($confolio);
return $rowco;
}
示例12: buscar
function buscar($tabla, $campo, $bustxt)
{
$link = Conectarse();
$sql = sprintf("SELECT * FROM %s WHERE %s LIKE '%s'", $tabla, $campo, $bustxt);
$result = $link->query($sql);
$link->close();
return $result;
}
示例13: eS
/**
* Ejecuta una consulta SQL en el servidor de MySQL
*
* @param $sql Consulta SQL a ejecutar
* @return Resultado de la consulta
*/
function eS(&$sql)
{
$enlace = Conectarse();
$resultado = mysql_query($sql, $enlace);
if ($resultado == false) {
echo "Error ejecutando consulta: " . $sql;
exit(1);
}
return $resultado;
}
示例14: __construct
public function __construct($codigo)
{
session_start();
$this->sucursal = $_SESSION["sucursal"];
$this->codigo = $codigo;
include 'conexion.php';
$this->link = Conectarse();
$this->sql_con = new mysqli($this->link['host'], $this->link['user'], $this->link['pass'], $this->link['bd']);
$this->obtener_producto();
}
示例15: EliminarItem
function EliminarItem($id)
{
$link = Conectarse();
$SQL = "DELETE FROM [022BDCOMUN].DBO.PRE_REQUISD WHERE IDPRE_REQUISD='{$id}'";
$RESULT = mssql_query($SQL);
if (!$RESULT) {
echo "error";
} else {
header('Location: /reserva/consulta/pre-requerimiento');
}
}