[ create a new paste ] login | about

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

PHP, pasted on Dec 30:
1
2
3
4
5
6
7
8
9
10
11
<html>
<body>
        <script>
                var svfchart = CreateSVGChart(400, 400, "SHOW")
                {% for svg_data in list_svg %}
                        DrawLine(svfchart, 0, 0, {{test}}, {{svg_data.y2}})
                        DrawLine(svfchart, 0, 0, 300, 300)
                {% endfor %}
        </script>
</body>
</html>


Output:
1
2
3
4
5
6
7
8
9
10
11
<html>
<body>
        <script>
                var svfchart = CreateSVGChart(400, 400, "SHOW")
                {% for svg_data in list_svg %}
                        DrawLine(svfchart, 0, 0, {{test}}, {{svg_data.y2}})
                        DrawLine(svfchart, 0, 0, 300, 300)
                {% endfor %}
        </script>
</body>
</html>


Create a new paste based on this one


Comments: