sql >> Databasteknik >  >> RDS >> Mysql

Hur skulle jag lägga till ett meddelande som säger $user_id raderad eller $user_id hittades inte?

<?php

$con = mysql_connect("localhost", "root", "");

if (!$con) {
    die('could not connect:'  .mysql_error());
}

mysql_select_db("final?orgdocs", $con);

$user_id = (int)$_POST["user_id"];

$result = mysql_query("delete from account where user_id=$user_id");

$affected_rows = mysql_affected_rows();

if ($affected_rows) {
    echo "User ID '$user_id' deleted";
} else {
    echo "User ID '$user_id' not found";
}

?>


  1. Hur väljer man minsta UUID med vänster yttre koppling?

  2. skillnad mellan UNHEX och X (MySQL)

  3. Anrop till odefinierad funktion oci_connect, php_oci8_12c.dll, Windows 8.1, php5.6.6

  4. Dubbel kolon (::) notation i SQL