PHP Help: What do these do and why - addslashes() and magic quotes and...

...mysql_real_escape_string? Also what does this sample of a php code do and why?
-------------------------------------------
if(!get_magic_quotes_gpc()){
$username = addslashes($username);}
-------------------------------------------
 
Back
Top