$ongewenste gebruiker krijgt niet de waarde van uw formulier na indiening
Probeer dit
<?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:als je het formulier eenmaal hebt ingediend, lijkt het op een paginavernieuwing, dus alles wat je aan de $unwanteduser hebt toegewezen voordat je het formulier indient, gaat verloren
Ik ben in de war
$result = mysql_query("SELECT * FROM wp_contactform");
$f = fopen(".htaccess", "a+");
$ip = $row['IP'];
Wat is op dit moment de waarde van $row['IP']
? en wat probeer je toe te voegen ??