在/var/www/html/msg.txt中只有一个词“Test”。
有人可以告诉我为什么这不起作用吗?
echo "<script>alert('$tes');</script>";
完整的php代码:
<?php
$ma="Test";
$tes = file_get_contents("/var/www/html/msg.txt");
echo "$tes"; //works
echo "<script>alert('$ma'); //works
</script>";
//but if this
echo "<script>alert('$tes'); // doesn't work!!!! Why?
</script>";
?>
我该怎么做?
隔江千里
慕的地6264312