mysql_fetch_array () / mysql_fetch_assoc () / mysql_fetch_row () / mysql_num_rows itp… oczekuje, że parametr 1 będzie zasobem lub wynikiem

Próbuję wybrać dane z tabeli MySQL, ale otrzymuję jeden z następujących komunikatów o błędach:

mysql_fetch_array () oczekuje, że parametr 1 będzie zasobem, boolean podany

lub

mysqli_fetch_array () oczekuje, że parametr 1 będzie mysqli_result, boolean podany

lub

Wywołanie funkcji składowej fetch_array () na boolean / non-object

To jest mój kod:

$username = $_POST['username'];
$password = $_POST['password'];

$result = mysql_query('SELECT * FROM Users WHERE UserName LIKE $username');

while($row = mysql_fetch_array($result)) {
    echo $row['FirstName'];
}

To samo dotyczy kodu takiego jak

$result = mysqli_query($mysqli, 'SELECT ...');
// mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given
while( $row=mysqli_fetch_array($result) ) {
    ...

i

$result = $mysqli->query($mysqli, 'SELECT ...');
// Call to a member function fetch_assoc() on a non-object
while( $row=$result->fetch_assoc($result) ) {
    ...

i

$result = $pdo->query('SELECT ...', PDO::FETCH_ASSOC);
// Invalid argument supplied for foreach()
foreach( $result as $row ) {
    ...

i

$stmt = $mysqli->prepare('SELECT ...');
// Call to a member function bind_param() on a non-object
$stmt->bind_param(...);

i

$stmt = $pdo->prepare('SELECT ...');
// Call to a member function bindParam() on a non-object
$stmt->bindParam(...);

questionAnswers(30)

yourAnswerToTheQuestion