Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- !doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Untitled Document</title>
- </head>
- <?php
- function add($a,$b)
- {
- #$a=5;
- #$b=5;
- $c=$a+$b;
- echo "The sum is".$c;
- }
- add(5,5);
- ?>
- <body>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement