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


PHP Conexion::singleton_conexion方法代碼示例

本文整理匯總了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>";
        }
    }
}
開發者ID:rchapon,項目名稱:Diario,代碼行數:18,代碼來源:functions.php

示例2: __construct

 private function __construct()
 {
     $this->dbh = Conexion::singleton_conexion();
 }
開發者ID:ralego,項目名稱:bases-datos-avanzadas,代碼行數:4,代碼來源:insert.class.php

示例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");
開發者ID:esneyder,項目名稱:TuContador-v1,代碼行數:21,代碼來源:newuser.php


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