tags:

views:

74

answers:

1

Duplicate:
http://stackoverflow.com/questions/2338942/access-a-javascript-variable-from-php

hi

i want get value from java script, then i will use the value in php, both are in single php file.

send how to connect with these two in single file....

thanks

A: 

you can use post or get request to your current page (or to another page) using <form> tag or ajax. Then in the php you will use $_REQUEST (or $_POST or $_GET) which act as associative array with the key being the name of your variable. So if you submitted mypage.php?foo=bar

in php $_REQUEST['foo'] will be bar.

Ryu