PHP&

PHP &

它是否正确? 如果没有,那么正确的语法是什么

我是php的新手因此想学习。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
    <?php
    // Check browser for JavaScript support

        $jsSupport='true'; ?>

        <noscript><?php $jsSupport='false'; ?></noscript>

        <?php
        if ($jsSupport == 'false') {

        include ('no-script-layout.php');

        } else {

        include ('regular-layout.php');

        }

     ?>

或者有更好的方法来处理这个问题吗?