php表單提交問題的解決方案

來源:互聯網
上載者:User

在此記錄一下,以後不能在同一個地方摔倒了!
資料庫為bbs,表為test.三個欄位,分別為id,name,sex。id為auto_increment。
串連資料庫的php檔案conn.php內容為 複製代碼 代碼如下:$conn = @ mysql_connect("localhost", "root", "") or die("資料庫連結錯誤");
mysql_select_db("bbs", $conn);
mysql_query("set names 'GBK'"); //使用GBK中文編碼;

表單頁:add2.php。內容為: 複製代碼 代碼如下:<?php
include("conn.php");
if($_POST['submit']){
$sql="insert into test (id,name,sex) values ('','$_POST[name]','$_POST[sex]')";
mysql_query($sql); echo "成功!";
}
?>
<form action="add2.php" method="post">
<input type="text" name="name" value="輸入名字" />
<input type="text" name="sex" value="輸入性別" />
<input type="submit" name="submit" value="提交" />
</form>

之前的錯誤在哪?$_POST['submit'] $_POST[name] 記得要大寫啊~~~
文法就是這樣的嗎?奇怪啊。還是先記住吧。以後會明白的。
需要注意的:1.$_POST[]一定要大寫。無論在哪。
      2.提交的按鈕一定要寫上name和value.name="submit" value = “ ”
      3.action要提交到php檔案
      4.解決頁面中文亂碼問題:在head裡寫刪除<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />,加上<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.