$unwanteduser není po odeslání přiřazena hodnota z vašeho formuláře
Zkuste toto
<?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 :Jakmile formulář odešlete , vypadá to jako obnovení stránky , takže vše , co jste před odesláním formuláře zadali u $ unwanteduser , bude ztraceno
Jsem zmaten
$result = mysql_query("SELECT * FROM wp_contactform");
$f = fopen(".htaccess", "a+");
$ip = $row['IP'];
Jaká je v tuto chvíli hodnota $row['IP']
? a co se pokoušíte připojit ??