[ create a new paste ] login | about

Link: http://codepad.org/aZdODips    [ raw code | output | fork ]

PHP, pasted on Oct 23:
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
<body>
    <h1>Test</h1>

    <?php
        $array = array(
            "foo" => "bar",
            "bar" => "foo",
        );

        echo($array["foo"]);
    ?>
</body>


Output:
1
2
3
4
5
<html>
<body>
    <h1>Test</h1>

    bar</body>


Create a new paste based on this one


Comments: