Possible Duplicate:
How to pass JavaScript variables to PHP?
I want to assign the javascript variable to php variable
$msg = "<script>document.write(message)</script>";
$f = new FacebookPost;
$f->message = $msg;
But it is not working……
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Javascript works on the user’s computer, PHP works on your server. In order to send variables from JS to PHP and vice versa, you need communication such as a page load.
Have a look here on what you can do: How to pass JavaScript variables to PHP? or more specifically the first answer (https://stackoverflow.com/a/1917626/1311593)