Help for this page

Select Code to Download


  1. or download this
    @data = (1, 9999, "Here comes \n a new line");
    $dbh->execute(@data);
    ...
    Query results:
    Here comes
    a new line
    
  2. or download this
    while (<FH>) {
       @arr = split /\|/;
    ...
    
    Query results:
    Here comes \n a new line