在javascript中我想知道如何使用post方法將數據發送到php文件。 我曾嘗試diffewrent方法。但我沒有得到任何輸出,所以請幫助我。 我的代碼如下所示。在javascript中如何使用post方法將數據發送到php文件
的index.php
<form method="post" name="form" enctype="multipart/form-data">
<input type="text" name="name" id="name" placeholder="Name" required/>
<input type="email" name="email" id="email" placeholder="Email" required/>
<input type="password" name="pass" id="pass" placeholder="Password" required/>
<input type="submit" name="submit" value="Send" onclick="myFunction()"/>
</form>
<script>
function myFunction() {
var name = document.getElementById("name").value;
var email = document.getElementById("email").value;
var password = document.getElementById("password").value;
//// I want post the values to profile.php
}
</script>
profile.php
if (isset($_POST['submit'])) {
$name = $_POST['name'];
}
使用Ajax調用方法後到PHP文件! – Ashwin
有很多關於此主題的教程,您是否首先嚐試在谷歌或其他搜索引擎中搜索您的問題? – codtex
http://stackoverflow.com/questions/5004233/jquery-ajax-post-example-with-php –