I'm a bit confused and i'm guessing there's a simple fix so please help.
I have this code (Just a snippet)
$new = "1";
<script language="javascript">
alert(<?php echo $new; ?>);
</script>
This works fine. It will alert "1". However, if I change $new to
$new = "Hello";
It no longer alerts the value? Any ideas?