<!DOCTYPE html> <html> <body> <?php $x=10; $y=20; function sum() { global $x,$y; $z=$x+$y; } sum(); ?> <body> <html>