$ unwanteduser 送信後にフォームから値が割り当てられない
これを試してください
<?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);
}
?>
情報:フォームを送信すると、ページが更新されたように見えるため、フォームを送信する前に$unwanteduserで割り当てたものはすべて失われます
混乱しています
$result = mysql_query("SELECT * FROM wp_contactform");
$f = fopen(".htaccess", "a+");
$ip = $row['IP'];
この時点で、$row['IP']
の値は何ですか。 ?そして、あなたが追加しようとしているものは??