 |
$righe = file("../pietanze/antipasti.txt");
while (list($n, $riga) = each($righe))
{
echo " " . str_replace("NEW", " ", $riga) . "  ";
}
?>
|
 |
$righe = file("../pietanze/primi.txt");
while (list($n, $riga) = each($righe))
{
echo " " . str_replace("NEW", " ", $riga) . "  ";
}
?>
|
 |
$righe = file("../pietanze/secondi.txt");
while (list($n, $riga) = each($righe))
{
echo " " . str_replace("NEW", " ", $riga) . "  ";
}
?>
|
 |
$righe = file("../pietanze/contorni.txt");
while (list($n, $riga) = each($righe))
{
echo " " . str_replace("NEW", " ", $riga) . "  ";
}
?>
|
 |
$righe = file("../pietanze/dessert.txt");
while (list($n, $riga) = each($righe))
{
echo " " . str_replace("NEW", " ", $riga) . "  ";
}
?>
|