当用户登录服务器时,我试图从浏览器发送一个变量。我无法做到这一点......
php代码:
<?php
echo "test";
$email = $_REQUEST['email'] ;
echo $email;
?>
html页面:
<html>
<head>
<title>Demo</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<script>
alert("test");
$.post("receiver.php", { email: "John", message: "2pm" } )s;
</script>
</body>
</html>
你能告诉我我错过了什么吗?看起来我错过了一些非常基本的东西.. php 文件中的 echo 测试也没有打印