當前位置: 首頁>>代碼示例>>PHP>>正文


PHP conexion::enlace方法代碼示例

本文整理匯總了PHP中conexion::enlace方法的典型用法代碼示例。如果您正苦於以下問題:PHP conexion::enlace方法的具體用法?PHP conexion::enlace怎麽用?PHP conexion::enlace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在conexion的用法示例。


在下文中一共展示了conexion::enlace方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: conexion

			<br/>
			<h1 style="text-align:center">Registrar nuevo datos de Venta</h1>
			<br/>
			<div class="row">
				<div class="col-xm-2"></div>
				<div class="col-xm-8" style="text-align:center">
					<img src="Imagen/vista_Ventas.jpg" alt="Vista_Ventas" width="400" height="200">
				</div>
				<div class="col-xm-2"></div>
			</div>
			<br/>
			<?php 
    require '../../capaDatos/conexion.php';
    $fl = $_GET[btn_Edit];
    $conecta = new conexion();
    $conn = $conecta->enlace();
    $sql_Select = "SELECT * FROM ventas WHERE folio = " . $fl;
    $res_Select = $conn->query($sql_Select);
    $Array = $res_Select->fetch_array();
    ?>
			<h4 style="text-align:center">.:. Requisitos .:. </h4>
			<div class="row">
				<form role="form" class="form-horizontal" action="../UIL/manipulacion.php" method="post">
					<div class="form-group has-success has-feedback">
						<div class="col-xm-2"></div>
						<label class="control-label col-xs-4" >Clave de Cliente:</label>
						<div class="col-xs-4">
							<input type="text" class="form-control " name="cvCliente" value="<?php 
    echo $Array[cv_Cliente];
    ?>
" 
開發者ID:Git-Hub-Crafty,項目名稱:Lote_Venta_Autos,代碼行數:31,代碼來源:act_Venta.php

示例2: cabecera

    cabecera();
    ?>
	</head>
	<body style="background-color:lightblue">
		<?php 
    indice();
    ?>
		<div class="container">
			<h2>Consulta General de Clientes</h2>
			<div class="row">
				<div class="col-xs-1"></div>
				<div class="col-xs-10">
					<?php 
    require '../../capaDatos/conexion.php';
    $conexion = new conexion();
    $conn = $conexion->enlace();
    $sql_Select = 'SELECT * FROM clientes';
    $res_Select = $conn->query($sql_Select);
    $num_R = $res_Select->num_rows;
    echo '<p>Nu&#769mero de clientes encontrados: ' . $num_R . '</p>';
    ?>
					<table class="table">
						<thead>
							<tr bgcolor="gray" style="color:black">
								<th>Clave</th>
								<th>Nombre</th>
								<th>Apellidos</th>
								<th>Tele&#769fono</th>
								<th>Consultar</th>
							</tr>
						</thead>
開發者ID:Git-Hub-Crafty,項目名稱:Lote_Venta_Autos,代碼行數:31,代碼來源:cg_Clientes.php

示例3: conexion

			<h1 style="text-align:center">Actualizar los datos del Auto</h1>
			<br/>
			<div class="row">
				<div class="col-xm-2"></div>
				<div class="col-xm-8" style="text-align:center">
					<img src="Imagen/vista_Autos.jpg" alt="Vista_Autos" width="500" height="300">
				</div>
				<div class="col-xm-2"></div>
			</div>
			<br/>
			<h4 style="text-align:center">.:. Requisitos .:. </h4>
			<?php 
    require '../../capaDatos/conexion.php';
    $mtl = $_GET[btn_Edit];
    $conectar = new conexion();
    $conn = $conectar->enlace();
    $sql_Select = "SELECT * FROM autos WHERE matricula='" . $mtl . "'";
    $res_Select = $conn->query($sql_Select);
    $Row = $res_Select->fetch_array();
    ?>
			<div class="row">
				<form role="form" class="form-horizontal" action="../UIL/manipulacion.php" method="post">
					<div class="form-group has-success has-feedback">
						<div class="col-xm-2"></div>
						<label class="control-label col-xs-4" >Matricula:</label>
						<div class="col-xs-4">
							<input type="text" class="form-control " name="matricula" value="<?php 
    echo $Row[matricula];
    ?>
" 
							placeholder="Matricula.." autocomplete="off" required="true" >
開發者ID:Git-Hub-Crafty,項目名稱:Lote_Venta_Autos,代碼行數:31,代碼來源:act_Auto.php


注:本文中的conexion::enlace方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。