php addslashes sırasında hata () fonksiyonu

0 Cevap php

html form kodları-

<td width="75">
<input name="txtQty[]" type="text" id="txtQty[]" size="5" 
 value="<?php echo $ct_qty; ?>" class="box" onKeyUp="checkNumber(this);">

Ben formu göndermek zaman ben şu aramaları komut-

if (!get_magic_quotes_gpc()) {
if (isset($_POST)) {
    foreach ($_POST as $key => $value) {
        $_POST[$key] =  trim(addslashes($value));
    }
}

if (isset($_GET)) {
    foreach ($_GET as $key => $value) {
        $_GET[$key] = trim(addslashes($value));
    }
}   
}

error-

Uyarı: 53 hattı üzerinde \ xampp \ htdocs \ shizin \ ürünler \ library \ config.php: addslashes () parametre 1 C verilen dize, dizi olmasını bekliyor

Ben bu script sadece girişini düzeltmek için kullanılan düşünüyorum ama ben bu addslash işlevi ne bilmiyorum ve neden bu hata geliyor.

0 Cevap