Jump to content

[SOLVED] question...


phpSensei

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.