IHYPRESS PROGRAMMING
PHP programs with code and output for beginners
HOME
|
ASP
|
C
|
CSS
|
GNUPLOT
|
HTML
|
JAVASCRIPT
|
PERL
|
PHP
|
PYTHON
|
RUBY
|
SVG
PHP
❯ Functions
<07>
<?php function sum($x, $y) { $total = $x + $y; return $total; } $n = 0; echo "<div style='font-size:22px;color:#0000cc;'>"; echo "Before the function, n = ". $n ."<br>"; $n = sum(3, 4); echo "After the function, n = " . $n; echo "</div>"; ?>
Before the function, n = 0
After the function, n = 7
COPYRIGHT © 2015-2024 IHY PRESS Frankfurt am Main 60329 Deutschland