Help for this page

Select Code to Download


  1. or download this
    <img src="graph?channel=1&amp;xsize=300&amp;ysize=400">
    
  2. or download this
    use URI; use HTML::Entities;
    my $uri = URI->new("graph", "http");
    $uri->query_form(channel => 1, xsize => 300, ysize => 400);
    print "<img src=\"", encode_entities($uri->as_string), "\">";