xxreenaxx1 Posted March 14, 2010 Share Posted March 14, 2010 I would like to know what these codes mean function clean($str) { $str = @trim($str); if(get_magic_quotes_gpc()) { $str = stripslashes($str); } return mysql_real_escape_string($str); } Link to comment https://forums.phpfreaks.com/topic/195224-definition-of-these-codes/ Share on other sites More sharing options...
trq Posted March 14, 2010 Share Posted March 14, 2010 Then you should look them up in the manual. It easy... http://php.net/<function name> Link to comment https://forums.phpfreaks.com/topic/195224-definition-of-these-codes/#findComment-1026051 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.