Hello,
how can I pass parameters from JavaScript to PHP? I created a button in a grid with php run option. I am entering a value into a filed which appears with Javascript. I have the value but how can I pass it to php?
This is my actual code:
$theinfo = "test";
echo "<script> var dnn = prompt('Please enter number', '0'); '.$theinfo.' = dnn;</script>";
echo $theinfo;
What I am doing wrong?
BR
Christina