Help for this page

Select Code to Download


  1. or download this
    my $var = `property <dataid>`;
    print "<td align="middle">$var</td>";
    
  2. or download this
    my $var;
    open( PROG, "property $dataid |" );
    ...
    
    # if there is binary data, there's more you'll need to do
    # to make it presentable to a browser...