Translations of this page:
- Acerca de mí
- Redes Sociales
-
-
<phpwikify> if (!isset($_GET['x']) ) {
echo "<note warning>No se ha definido la variable ''x''.\n</note>\n"; }
else if (preg_match('#\d+#', $_GET['x']) ) {
echo "Se ha cargado el número: ''". intval($_GET['x']). "''.\n"; }
else {
echo "Se ha cargado el contenido siguiente:\n\n----\n\n"; echo $htmlspecialchars($_GET['x']); echo "\n\n----\n\n"; }
</phpwikify>