Help for this page

Select Code to Download


  1. or download this
    SELECT SND.userid, SND.firstname, SND.lastname
    FROM msg as M
    ...
      ON SND.userid = M.msg_from
    WHERE M.msg_to = ? 
          AND M.received iS NULL IN (SELECT title, age, country FROM MSG)
    
  2. or download this
    SELECT userid, FNAME, LNAME, title, age, country
    FROM msg as M
    ...
      ON SND.userid = M.msg_from
    WHERE M.msg_to = ? 
      AND M.received iS NULL
    
  3. or download this
    <body>
    [% FOREACH name IN list %]
    ...
    <p>country   [% name.country %] </p>
    [% END %]
    </body>
    
  4. or download this
    
    #!/usr/bin/perl
    ...
    
    $template->process (\$templ, { list => $data })
            or die $template->error;