将变量值从JS传递到PHP

我在将值从JS传递到PHP时遇到问题,以便可以将其用作PHP函数的参数。一旦单击链接,JS函数将由onclick事件触发。这是JS + HTML代码:

<script type="text/javascript">

function insertIntoDb() {

$.GET OR POST("insert.php");

return false;

}

</script>

<a href="#" onclick="insertIntoDb();">INSERT MY USERNAME</a>

PHP(insert.php):

<?php

session_start();

function insert($username){

$username = mysql_real_escape_string($username);

$query = mysql_query("INSERT INTO List(Username) VALUES('$username')") or die(mysql_error());

}

if(isset($_POST['Username'])){

insert($_POST['Username']);

}

?>

感谢您能为我提供帮助的人。我对PHP和JS还是很陌生,所以请原谅我的愚蠢。

回答:

您将数据从浏览器传递到服务器。Javascript是一种用于操纵浏览器的语言。PHP是您的服务器端语言。

您可以在获取或发布请求中传递数据,例如“ mypage.php?Username = john”

您想要的是一种表单,以便您可以与用户进行交互

<script type="text/javascript">

function insertIntoDb() {

document.getElementById("myform").submit();

//or if you want to use jquery and ajax

$.post("insert.php", $("#myform").serialize());

return false;

}

</script>

<form id="myform" method="post" action="insert.php">

<a href="#" onclick="insertIntoDb();">INSERT MY USERNAME</a>

<input type="text" name="Username"></input>

</form>

以上是 将变量值从JS传递到PHP 的全部内容, 来源链接: utcz.com/qa/402287.html

回到顶部