Skip to content

Instantly share code, notes, and snippets.

@Pavaniysk
Created January 4, 2023 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pavaniysk/768978449a1365c70aa9f49aa36cade6 to your computer and use it in GitHub Desktop.
Save Pavaniysk/768978449a1365c70aa9f49aa36cade6 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<body>
<?php
$x= 100;
$y= 50;
function addition() {
$GLOBALS['z']= $GLOBALS['x']+ $GLOBALS['y'];
}
addition();
echo $z;
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment