Bonjour,
Comment mettre un fichier externe php dans une variable ?
Exemple : Je reprend un site et je bloque sur un problème :
J'ai un fichier module.php qui contient (pour résumer) :
Citation :
<?php $nom="bernard" ;?> hello <?php echo $nom ?>
|
Ce qui retourne "hello Bernard"
Au début, j'avais un autre fichier et j'incluais ça dans ce fichier comme suit, pour résumer :
Citation :
<html>
<?php include("module.php" ); ?>
</html>
|
ce qui retourne <html>hello bernard </html>
Mon problème, c'est que je veux, avec ce même module.php, mettre "hello bernard" dans une variable, et j'y arrive pas...
Si je fais :
Citation :
<?php $bienvenue=include("module.php" ); ?>
<html>
<?php $bienvenue; ?>
</html>
|
ça me met "hello bernard" au dessus de la balise html.
J'ai aussi fait des tests avec implode() ou file(), bref, j'y arrive pas.
Auriez vous une solution ?