Accéder à une variable globale November 25, 2011 Author: user {filelink=14323} <html> <head><title>Accès global</title></head> <body> <div> <?php $artiste='Yannick noah'; function monArtiste() { global $artiste; print $artist." chante mieux que les autres<br />"; } monArtiste(); ?> </div> </body> </html> Categories: Uncategorized