“PHP PDO Compruebe si existe fila en la base de datos” Código de respuesta

PHP PDO Compruebe si existe fila en la base de datos

$stmt = $conn->prepare('SELECT * FROM table WHERE ID=?');
$stmt->bindParam(1, $_GET['id'], PDO::PARAM_INT);
$stmt->execute();
$row = $stmt->fetch(PDO::FETCH_ASSOC);

if( ! $row)
{
    echo 'nothing found';
}

/*
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC); // Same here
if( ! $rows)
{
    echo 'nothing found';
}
*/
Borma

PHP PDO Compruebe si existe un registro antes de insertar

$sql = $dbh->prepare("SELECT COUNT(*) AS `total` FROM directory WHERE telephone = :phone");
$sql->execute(array(':phone' => $telephone));
$result = $sql->fetchObject();

if ($result->total > 0) 
{
    echo 'The telephone number: ' . $telephone. ' is already in the database<br />';
}
else 
{
      echo 'No rows matched the query.';
}
Borma

Respuestas similares a “PHP PDO Compruebe si existe fila en la base de datos”

Preguntas similares a “PHP PDO Compruebe si existe fila en la base de datos”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código