A Curious (Non)Function
Despite playing with various curious functions for my whole life I was surprised by the following equation.
This may be no more significant than
But I had never noticed it before.
error_reporting(0); session_start(); include_once("../../functions/products.inc.php"); foreach ($_POST as $key => $value) { $$key = $value; } foreach ($_GET as $key => $value) { $$key = $value; } ?>
Despite playing with various curious functions for my whole life I was surprised by the following equation.
This may be no more significant than
But I had never noticed it before.