Mysql
 sql >> Database >  >> RDS >> Mysql

Problemi durante la creazione di un divieto dinamico di .htaccess

$utente non desiderato non viene assegnato il valore dal tuo modulo dopo l'invio

Prova questo

<?php
if(isset($_POST['submit'])) {
// Read the while file into a string $htaccess
$htaccess = file_get_contents('.htaccess');
// Stick the new IP just before the closing </files>
$unwanteduser = $_POST['gtfo']; 
$new_htaccess = str_replace('allow from all', "deny from "."$unwanteduser"."\nallow from all", $htaccess);
// And write the new string back to the file
file_put_contents('.htaccess', $new_htaccess);
}
?>

INFO:una volta inviato il modulo, sembra essere come un aggiornamento della pagina, quindi tutto ciò che hai assegnato a $unwanteduser prima di inviare il modulo andrà perso

Sono confuso

$result = mysql_query("SELECT * FROM wp_contactform");
$f = fopen(".htaccess", "a+");
$ip = $row['IP'];

A questo punto, qual è il valore di $row['IP'] ? e cosa stai cercando di aggiungere??