funkyapache Posted March 19, 2009 Share Posted March 19, 2009 Hi I have the following php function function mysql_prep($value){ $magic_quotes_active = get_magic_quotes_gpc(); $new_enough_php = function_exists("mysql_real_escape_string"); //used for newer php >= 4.3.0 if($new_enough_php){ //undo magic quotes if ($magic_quotes_active){$value = stripslashes($value);} $value = mysql_real_escape_string($value); }else{//before php 4.3 //if magic quotes not on then addslashes manually if (!$magic_quotes_active) {$value=addslashes($value);} //if magic quotes is active then the slashes already exists } return $value; } I tried the following <?php mysql_prep('Hello'); ?> I do not get back anything I tried echoing the $value as the function starts and that return nothing so my thoughts are that no value is being passed to it. I did a echo on $magic_quotes_active and $new_enough_php and both returned 1. I have no problems with any of my other functions. I am hoping to use this function to escape any special characters before inserting into a mysql table. Quote Link to comment https://forums.phpfreaks.com/topic/150157-trouble-passing-value-to-a-function-and-return-a-value/ Share on other sites More sharing options...
Mark Baker Posted March 19, 2009 Share Posted March 19, 2009 $result = mysql_prep('Hello'); echo $result; Quote Link to comment https://forums.phpfreaks.com/topic/150157-trouble-passing-value-to-a-function-and-return-a-value/#findComment-788554 Share on other sites More sharing options...
funkyapache Posted March 19, 2009 Author Share Posted March 19, 2009 Hi Mark, Thanks for the reply. Tried that instead of the way that I was calling mysql_prep. I still get returned nothing at all. Quote Link to comment https://forums.phpfreaks.com/topic/150157-trouble-passing-value-to-a-function-and-return-a-value/#findComment-788565 Share on other sites More sharing options...
Mark Baker Posted March 19, 2009 Share Posted March 19, 2009 Ensure that you have already established a connection to mySQL before calling your mysql_prep() function, otherwise you'll get a False returned by the call to mysql_real_escape_string() and a wraning issued. Quote Link to comment https://forums.phpfreaks.com/topic/150157-trouble-passing-value-to-a-function-and-return-a-value/#findComment-788696 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.