Jump to content

[SOLVED] sanitize() ...?


elis

Recommended Posts

Could somebody please explain the sanitize(); function and whether it's wise to use it in adjacent to

$valude = mysql_real_escape_string(strip_tags(trim($_POST['value'])));

in regards to security?

I've tried searching for the function on PHP.net and through Google but came up short.

 

Link to comment
Share on other sites

That's weird. I found it by mistake here:

http://us3.php.net/manual/en/function.mysql-real-escape-string.php

In the user comments several people mentioned the function but like you said, it seems like doesn't exist.

 

Here's a sample code somebody posted

 

<?php
function sanitize($input){
    if(is_array($input)){
        foreach($input as $k=>$i){
            $output[$k]=sanitize($i);
        }

I'm still learning PHP so the chances that I misunderstood this is extremely high.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.