I have declared a javascript variable ,
var myJavascriptVar = 12345;
And unable to assign that value to php variable;
$msg = "<script>var n=document.getElementById('fil').val; document.write(n);</script>";
echo $msg;
Using Cookie is the better solution i think -
<script> document.cookie = "myJavascriptVar = " + myJavascriptVar </script>
<?php
$myPhpVar= $_COOKIE['myJavascriptVar'];
?>
Try using ajax with jQuery.post() if you want a more dynamic assignment of variables.
The reason you can't assign a variable directly is because they are processed in different places.
It's like trying to add eggs to an already baked cake, instead you should send the egg to the bakery to get a new cake with the new eggs. That's what jQuery's post is made for.
Alert the results from requesting test.php with an additional payload of data (HTML or XML, depending on what was returned).
$.post( "test.php", { name: "John", time: "2pm" })
.done(function( data ) {
alert( "Data Loaded: " + data );
});
I have a better solution: Here, in the .php file, I have a variable called javascriptVar. Now, I want to assign the value of javascriptVar to my php variable called phpVar. I do this by simply call javascript variable by document.writeln in the script tag.
<?php
echo "<script>
var javascriptVar = 'success';
</script>";
$phpVar = "<script>document.writeln(javascriptVar);</script>";
?>
You should see these links:
Assign Javascript value to PHP variable
Passing Javascript vars to PHP
Or you can use AJAX request or POST and GET methods to achieve this.
Snippet below may helpful for you:
<?php
if(isset($_POST['isSubmit']))
{
// do something here
echo $_POST["name"];
}
?>
<form action="<?php $_SERVER['PHP_SELF'];?>" method="POST">
Your name: <input type="text" name="name" />
<input type="Submit" value="Submit" name="isSubmit">
</form>
PHP
is server side language and JS
is client side.best way to do this is create a cookie using javascript
and then read that cookie in PHP
<script type="text/javascript">
document.cookie = "myJavascriptVar =12345";
</script>
<?php
$phpVar = $_COOKIE['myJavascriptVar'];
echo $phpVar;
?>