I cannot use PHP variables to use as parameters for my function.
Function:
<script type="text/javascript"> function myFunction(id,name) { alert(id); alert(name); } </script>
And this is part of PHP:
echo "<button onclick='myFunction($intvar,$strvar)' type='button'>ClickMe</button>";
the call works when I use numbers like this: myFunction (0,1) but I need to use variables to call myFunction.
Please help, thanks.
source share