“Mysqli Real Escape String Php” Code-Antworten

Mysqli Real Escape String Php


<?php

mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = mysqli_connect("localhost", "my_user", "my_password", "world");

$city = "'s-Hertogenbosch";

/* this query with escaped $city will work */
$query = sprintf("SELECT CountryCode FROM City WHERE name='%s'",
    mysqli_real_escape_string($mysqli, $city));
$resu = mysqli_query($mysqli, $query);
printf("Select returned %d rows.\n", mysqli_num_rows($result));

/* this query will fail, because we didn't escape $city */
$query = sprintf("SELECT CountryCode FROM City WHERE name='%s'", $city);
$result = mysqli_query($mysqli, $query);

Famous Frog

PHP var_export zu String

$someString = var_export($anyVariable, true);
Brainy Bison

Ähnliche Antworten wie “Mysqli Real Escape String Php”

Fragen ähnlich wie “Mysqli Real Escape String Php”

Weitere verwandte Antworten zu “Mysqli Real Escape String Php” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen