I hazırlanmış PHP / MySQL sorguları kullanarak eğer girdileri gerekiyor mu?

0 Cevap php

Aşağıdaki kod parçası göz önüne alındığında, kaçmak ve sterilize gerek var mı $city?

<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

/* check connection */
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$city = "Amersfoort";

/* create a prepared statement */
if ($stmt = $mysqli->prepare("SELECT District FROM City WHERE Name=?")) {

    /* bind parameters for markers */
    $stmt->bind_param("s", $city);

    /* execute query */
    $stmt->execute();

    /* bind result variables */
    $stmt->bind_result($district);

    /* fetch value */
    $stmt->fetch();

    printf("%s is in district %s\n", $city, $district);

    /* close statement */
    $stmt->close();
}

/* close connection */
$mysqli->close();
?>

Eğer hazırlanmış sorgular kullanırken herhangi girdiyi gerekiyor?

0 Cevap