phpSensei Posted August 31, 2007 Share Posted August 31, 2007 I never use RETURN in functions by i try to and do not understand... so if function testing(){ $message = "hi"; return $message } and if I included this function, and tried to echo message, would it echo "HI"??? I tried it, but it doesnt work. Maybe I grasped the concept and havnt learned how to use it yet... Quote Link to comment https://forums.phpfreaks.com/topic/67512-solved-question/ Share on other sites More sharing options...
phpSensei Posted August 31, 2007 Author Share Posted August 31, 2007 would this be a good use? <?php function dbconnect(){ $dbhost = "localhost" ; $dbname = "root" ; $dbpass = "" ; $connection = @mysql_connect($dbhost,$dbname,$dbpass) or die("Database is not available" . mysql_error()); if($connection){ $select_db=mysql_select_db("forums"); } else { return $connection; } } ?> <?php dbconnect(); ?> Quote Link to comment https://forums.phpfreaks.com/topic/67512-solved-question/#findComment-338988 Share on other sites More sharing options...
pocobueno1388 Posted August 31, 2007 Share Posted August 31, 2007 Yes, it would return "hi", but to get that returned value, you need to assign it a variable. <?php function testing(){ $message = "hi"; return $message; } $text = testing(); echo $text; ?> Quote Link to comment https://forums.phpfreaks.com/topic/67512-solved-question/#findComment-338990 Share on other sites More sharing options...
phpSensei Posted August 31, 2007 Author Share Posted August 31, 2007 thankyou.... Quote Link to comment https://forums.phpfreaks.com/topic/67512-solved-question/#findComment-338993 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.