|
Posted by Jean Pierre Daviau on 07/25/07 16:31
----------- auto.inc --------
$autoexec = "auto.bat";
$path = "\n%path%=%path%;c:\php\php.exe";
------------------
<?
//"C:\Program Files\EasyPHP1-8\php\php.exe" -check-f auto.php
require_once('auto.inc');
function updateFichier(){
global $autoexec, $path;
if (!$myBool = fopen ($autoexec, "a")) {
echo "Impossible de crιer le fichier ($autoexec)";
exit;
}
if (is_writable($autoexec)) {
if (fwrite($myBool, $path) === FALSE) {
echo "Impossible d'ιcrire dans le fichier ($autoexec)";
exit;
}
fclose($myBool);
}else{
echo "Le fichier $autoexec n'est pas accessible en
ιcriture.";
}
return $autoexec;
}
$file = updateFichier();
$handle = fopen ($file, "r");
echo "\n\n";
echo fread ($handle, filesize ($file));
?>
Navigation:
[Reply to this message]
|