Home > php教程 > PHP源码 > 将javascript变量传递到PHP脚本中的方法~

将javascript变量传递到PHP脚本中的方法~

WBOY
Release: 2016-06-08 17:31:30
Original
1020 people have browsed it
<script>ec(2);</script>


先用document.cookie方法把js变量写入cookie中,再用PHP取出。

  

   1. var name="myqq",value="10000";  
   2. document.cookie=name+"="+value+";"  

īpt> 

echo $_COOKIE["myqq"]."
";  

$my="我的QQ是".$_COOKIE["myqq"];  

echo $my;  

?> 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template