-1
嗨,我有一個新手問題 我想驗證我的位置代碼,當位置代碼全部準備就緒 php告訴我,位置代碼是存在的 如何用PHP提前做到這一點...如何驗證位置碼當位置全部設置完畢?
if(isset($_POST['addbtn'])){
$lcode = $_POST['locationcode'];
$ladd = $_POST['locationadd'];
$stationadd = $mysqli->prepare("INSERT INTO table_station (locationcode,locationaddress)
VALUES (?,?)");
$stationadd->bind_param('is',$lcode,$ladd);
$stationadd->execute();
$stationadd->close();
$mysqli->close();
}
喜先生@Ashish 謝謝.. 用ajax 抱歉,因爲我在網絡發展是新.. – user3367242
如何驗證我已經搜索小號爲你實施教程,因爲你是新的,http://www.ajax-tutor.com/post-data-server.html – Ashish
哇謝謝這個例子.. 非常感謝你 它確定複製這個例子嗎? – user3367242