Jump to content

My friend recomended putting an escape_data function in this...


inVINCEable

Recommended Posts

So here is my register.php, and as you can guess, registered users for my site. My friend suggested I put this little bit of code saying it would take care of any input that was put in and it would take care of any problems with the characters input by the user such as backslashes, etc. Here is this code he said to include.

 

function escape_data ($data) { 
global $dbc //declares by mysql_connect global
if (ini_get('magic_quotes_gpc')) { 
$data = stripslashes($data); 
} 
return mysql_real_escape_string(trim($data), $dbc); 
} 

 

 

Now he said I would now be able to call escape_data anywhere throughout my website to fun the string through this function. Any input on this technique is greatly appreciated.

 

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.