The Return Keyword Codeacademy PHP Example

The Return Keyword Codeacademy PHP Example

Easy example, just use return instead of echo or print.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
	<head>
		<title></title>
	</head>
	<body>
      <?php
        function returnName()
            {
                return "Cristi";   
            }
        returnName();
      ?>
    </body>
</html>

Add a comment: