I know that there are many questions about this but I cannot make it work.
My html (test.htm) has only this code
<?php
$var = 'foo';
?>
<script type="text/javascript" language="javascript">
var val = "<?=$var?>";
alert(val);
</script>
But when I open the file with the browser the value of val is "<?=$var?>"
and not 'foo'
How can I make it work?!!!
Thanks, Carlos.
<?php echo $var; ?>
just to test. – Ben Everard May 14 '12 at 11:02