PHP: Utilisation des variables globales November 25, 2011 Author: user {filelink=14322} <html> <head> <title>Variable Globale</title> </head> <body> <?php $var_global = "R&B"; function hobbie () { global $var_global; echo "J'ecoute très souvent la musique $var_global", " "; } hobbie (); ?> </body> </html> Categories: Uncategorized