index.php に 1 つのフォーム テキスト フィールドがあり、8080 を入力します。
http_port : <input size="5" name="http_port" value="3128">
そしてテーブル「イカ」はこのように
いいえ | タグ | 価値
1 | http_port | 3128
送信ボタンをクリックすると、submit.php にリダイレクトされますが、テーブルは値または 3128 を更新しませんでした。
submit.php
<?php
include("conn.php");
$value = $_POST['http_port'];
$query = mysql_query("update squid set http_port='$value' where '$no'=1");
echo "Update was Succesful<br>
<a href=\"index.php\">Bac</a>";
?>
私のスクリプトの何が問題になっていますか? 私の悪い英語をありがとう、そしてごめんなさい:)