This will be my last post for today, so i hope this works...
try putting it into a function, then calling the function on your main page, Like this...
Menu.inc:
<?php
function writepage()
{
Global $fichier;
Global $chaine;
Global $id_fichier;
$fichier = "script/xscript.js";
$chaine = "ca marche bien voila";
$id_fichier = fopen($fichier,"a");
fwrite($id_fichier, $chaine);
fclose($id_fichier);
}
?>
---------------------
Mina Page:
<html>
<head>
<title>voia voiloou</title>
<?php require"script/menu.inc"; ?>
<?php writepage(); ?>
<script language="JavaScript1.2" src="script/script.js"></script>