このサイトとプログラミングの新人です。投稿データをPHP関数に渡す
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Login page</title>
<script> //This is the client side form validation with Javascript
//This code is executed on the client's browser
function validateForm()
{
var x=document.getElementById("username").value;
if (x==null || x=="") //check that the name field is not blank
{
alert("Your username must be filled out");
return false;
}
var y =document.getElementById("password").value;
if (y==null || y=="") //check that the project field is not blank
{
alert("Your password must be filled out");
return false;
}
}
</script>
<?php //This is the server side form validation with PHP
//This code executes on the web server
//Write your server side form validation code here
//checks form is submitted
私は、この機能を使用してユーザー名とパスワードからデータを取得しようとしています。私は今何時間もそれを混乱させていて、ついに諦めてしまった。どんな助けもいいだろう。
機能checkUserData(){$ユーザ名= $ _POST [」ユーザー名]]; }そのような意味ですか? – David