php 表單提交

2022-03-14 17:42:55 字數 784 閱讀 8178

因為最近在學php,之前一直在寫c#,今天來對比下c#和php的表單提交,也作為自己學php的記錄

c# 以post提交資料(這裡我就只寫後台對資料的處理了,

// home頁面

public void home(string start)

}

php 以post 提交資料

// 提交到 controller.php

接下來寫一下controller.php獲取資料

<?php

session_start

();

$user_id =$_post['user_id']; //

宣告變數$user_id,把post請求中的user_id的值賦給它

$user_password= $_post['user_password'];

$user_limitation=$_post['limit'];

$host ='localhost';

$user_name='root';

$password ='';

$admin_limitation ='1';

$guest_limitation='0';

$conn = mysql_connect($host,$user_name,$password);//

連線mysql

if(!$conn)

mysql_select_db('scut_xiaoy');//

選擇資料庫

?>

php提交表單處理,PHP表單處理

我們可以在php中建立和使用表單。要獲取表單資料,需要使用php超級元組 get和 post。表單請求可以是get或post。要從get請求中檢索資料,需要使用 get,而 post用於檢索post請求中的資料。php get表單 get請求是表單的預設請求。通過get請求傳遞的資料在url瀏覽器上...

php 表單提交方法

1.收集 html 表單提交的資料 php request 用於收集 html 表單提交的資料。name request fname request fname 獲取前面name fname 的輸入值 echo name 2.php post 廣泛用於收集提交 method post 的 html ...

php 防止表單重複提交

問題 解決 法1,表單資料提交後即進行頁面跳 具體如下 資料庫檔案 1create table form 2name char 50 not null3 表單檔案一form.php 1 form action form handle.php method post 2 input type name...