From 8bbc39b3b4be0ff14d5e72f04e8948ffcbde2b9e Mon Sep 17 00:00:00 2001 From: javisenberg Date: Sat, 10 Aug 2019 20:43:43 +0200 Subject: [PATCH] Added external link (#32061) * Added external link "More info" section had no external references. Updated with two manual entries. * Update index.md --- guide/spanish/php/variables/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guide/spanish/php/variables/index.md b/guide/spanish/php/variables/index.md index 1865fcc6ef..f9bc3da510 100644 --- a/guide/spanish/php/variables/index.md +++ b/guide/spanish/php/variables/index.md @@ -68,4 +68,7 @@ El siguiente ejemplo dará salida a la suma de dos variables: En el ejemplo anterior, observe que no tuvimos que decirle a PHP qué tipo de datos es la variable. PHP convierte automáticamente la variable al tipo de datos correcto, dependiendo de su valor. En otros lenguajes como C, C ++ y Java, el programador debe declarar el nombre y el tipo de la variable antes de usarla. -#### Más información: \ No newline at end of file +#### Más información: + +* [PHP.net - Variables básicas](https://secure.php.net/manual/es/language.variables.basics.php) +* [PHP.net - Ámbito de variables](https://secure.php.net/manual/es/language.variables.scope.php)