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... 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(); ?> 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; ?> 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.... Link to comment https://forums.phpfreaks.com/topic/67512-solved-question/#findComment-338993 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.