From 841bd16701ba12d336632e251b472523966830e8 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Mon, 4 Sep 2023 18:15:57 +0200 Subject: [PATCH] Create internetinfo.php Created file "internetinfo.php" to perform the necessary functions of collecting information about the Internet connection. --- front/php/templates/internetinfo.php | 49 ++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 front/php/templates/internetinfo.php diff --git a/front/php/templates/internetinfo.php b/front/php/templates/internetinfo.php new file mode 100644 index 00000000..84edddc9 --- /dev/null +++ b/front/php/templates/internetinfo.php @@ -0,0 +1,49 @@ +"; + echo $output; + echo ""; + exit; +} + +// Replace "{" with "" +$output = str_replace("{", "", $output); + +// Replace "}" with "" +$output = str_replace("}", "", $output); + +// Replace "," with "" +$output = str_replace(",", "", $output); + +// Replace '"' with "" +$output = str_replace('"', "", $output); + +// Show the result +echo "
"; +echo $output; +echo ""; + +?>