PHP與MySQL——插入操作

來源:互聯網
上載者:User
<h1>插入操作</h1><?phpif(!isset($_POST['submit'])){//如果沒有表單提交,顯示一個表單?><form action="" method="post">    國家:<input type="text" name="country" />    動物名稱(英文):<input type="text" name="animal" />    動物名稱(中文):<input type="text" name="cname" />    <input type="submit" name="submit" value="提交表單" />    </form><?php}else{//如果提交了表單//資料庫連接參數$host = "localhost";$user = "root";$pass = "zq19890319";$db = "phpdev";//取得表單中的值,檢查表單中的值是否符合標準,並做適當轉義,防止SQL注入$country = empty($_POST['country'])? die("請輸入國家名稱"):mysql_escape_string($_POST['country']);$animal = empty($_POST['animal'])? die("請輸入英文名"):mysql_escape_string($_POST['animal']);$cname = empty($_POST['cname'])? die("請輸入中文名"):mysql_escape_string($_POST['cname']);//開啟資料庫連接$connection = mysql_connect($host, $user, $pass) or die("Unable to connect!");//選擇資料庫mysql_select_db($db) or die("Unable to select database!");//構造一個SQL查詢$query = "INSERT INTO symbols(country, animal, cname) VALUE('$country', '$animal', '$cname')";//執行該查詢$result = mysql_query($query) or die("Error in query: $query. ".mysql_error());//插入操作成功後,顯示插入記錄的記錄號echo "記錄已經插入, mysql_insert_id() = ".mysql_insert_id();//關閉當前資料庫連接mysql_close($connection);}?>
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.