Help for this page

Select Code to Download


  1. or download this
    # make the first letters of the NAME of the sender uppercase
    my @from = split(/ /, $from);
    ...
    # make the first letter of the message upper case
    $message = ucfirst($message);
    
  2. or download this
    ##############################################
    # puts a period at the end of senders message,
    ...
      $message = $message.'.';
    }
    ##############################################