Williamm
(usa Linux Mint)
Enviado em 13/04/2012 - 17:17h
legal tava fazendo um qse parecido, juntando tudo que to encontrando, da uma olhada ai.
<html>
<head>
<title>
Processos
</title>
</head>
<?php
$data = date("d-m-Y");
$filename = 'relatorio.txt';
echo "Data atual do Servidor: $data"."<br><br>";
if (file_exists($filename)) {
echo "$filename foi atualizado em: " . date ("d-m-Y", filectime($filename))."<br><br>";
}
if ($data==date ("d-m-Y", filectime($filename))){
echo"<center><b><h1>Executando Processos!</h1></b></center>";
}else{
echo"<center><b><h1>LIGAR PARA TI! 3864-1678, William Amaral</h1></b></center>";
}
?>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data">
<label id="labelCommand" for="inputCommand">Receber: </label>
<input type="submit" value="Executar"/>
</form>
<body>
<label id="labelCommand" for="inputCommand">Confirmar: </label>
<input type="submit" value="Executar"/>
</form>
</body>
</html>