Help for this page

Select Code to Download


  1. or download this
    ## SQL table schema:
        $sql = "create table if not exists views (
    ...
            id integer null,
            views integer DEFAULT (0)
        );";
    
  2. or download this
    sub api_get_views {
        my $id = shift;
    ...
    
        return $cnt;
    }