If I pass PHP variables with . in their names via $_GET PHP auto-replaces them with _ characters. For example: <?php echo "url is ".$_SERVER['REQUEST_URI']."
“; echo “x.y is “.$_GET[‘x.y’]….
If I pass PHP variables with . in their names via $_GET PHP auto-replaces them with _ characters. For example: <?php echo "url is ".$_SERVER['REQUEST_URI']."
“; echo “x.y is “.$_GET[‘x.y’]….