mysql_escape_string whole post array?

前端 未结 4 754
野趣味
野趣味 2021-01-02 06:10

I was wondering is it possible to just my_sql_escape string the whole $_POST and $_GET array so you dont miss any variables?

Not sure how to test it or I would\'ve m

4条回答
  •  隐瞒了意图╮
    2021-01-02 06:42

    you can use

    foreach(array_keys($_POST) as $key)
    {
    
      $clean[$key] = mysql_real_escape_string($_POST[$key]);
    
    }
    

    and after this to access post data use echo $clean['name'];

提交回复
热议问题