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 ""; + +?>