Vedi gli esempi sotto.Se faccio un file come l'Esempio a ottengo un file che "unisce" i tre file php.
Con l'esempio b dovrei creare altri 2 "include": vorrei crearne uno solo che includa "<codice> e testo" e "<codice2> e testo2>". E' possibile?
Esempio a
<html>....
<?php include("a.php") ?>
<?php include("b.php") ?>
<?php include("a.php") ?>
.....
</html>
Esempio b
<html>....
<codice> e testo
<?php include("a.php") ?>
<codice2> e testo2>
<?php include("b.php") ?>
<?php include("c.php") ?>
.....
</html>

Rispondi quotando