This code seems to comment out the alert line out, any idea why?
If I remove “//test” then it seems to work though.
Not sure if it’s a PHP or JS Bug or it’s meant to uncomment the line below also?
<script>
//test <? //test ?>
alert("test");
</script>
In the page source shows as:
<script>
//test alert("test");
</script>