本文整理匯總了PHP中Conexion::singleton_conexion方法的典型用法代碼示例。如果您正苦於以下問題:PHP Conexion::singleton_conexion方法的具體用法?PHP Conexion::singleton_conexion怎麽用?PHP Conexion::singleton_conexion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Conexion
的用法示例。
在下文中一共展示了Conexion::singleton_conexion方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __UsuariosRegistrados
function __UsuariosRegistrados()
{
$conexion = Conexion::singleton_conexion();
$sql = 'SELECT * FROM usuarios';
$stmt = $conexion->prepare($sql);
$results = $stmt->execute();
$rows = $stmt->fetchAll();
$error = $stmt->errorInfo();
if (empty($rows)) {
echo "<option>";
echo "No hay usuarios registrados.";
echo "</option>";
} else {
foreach ($rows as $row) {
echo "<p class='usuariosregistrados'>" . $row['name'] . "</p>";
}
}
}
示例2: __construct
private function __construct()
{
$this->dbh = Conexion::singleton_conexion();
}
示例3: usuarios
<?php
require_once 'conexion.class.php';
$conexion = Conexion::singleton_conexion();
$normalpass = $_POST['password'];
$hash = sha1($normalpass);
$perfil = "";
$permiso = "Usuario";
$region = "";
$estado = "";
$sql = "INSERT INTO usuarios (nombre,perfil,email,password,permiso,region,estado) \nVALUES (:nombre,:perfil,:email,:password,:permiso,:region,:estado)";
$q = $conexion->prepare($sql);
$q->bindParam(':nombre', $_POST['nombre'], PDO::PARAM_STR);
$q->bindParam(':perfil', $perfil, PDO::PARAM_STR);
$q->bindParam(':email', $_POST['email'], PDO::PARAM_STR);
$q->bindParam(':password', $hash, PDO::PARAM_STR);
$q->bindParam(':permiso', $permiso, PDO::PARAM_STR);
$q->bindParam(':region', $region, PDO::PARAM_STR);
$q->bindParam(':estado', $estado, PDO::PARAM_STR);
$q->execute();
header("location: ../index.php");