Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^3: Annoying whitespace(s)...

by Corion (Patriarch)
on Sep 05, 2004 at 22:00 UTC ( [id://388667]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    ## the email address from the webpage form code. If in doubt,       ##
    +###################
    ## hardcode the email address into the script by excluding the      ##
    +###################
    ## 'listemail' parameter from the webpage form script code, and     ##
    +###################
    
  2. or download this
    $LIST_EMAIL = "reaction";
    $LIST_EMAIL .= "\@";
    $LIST_EMAIL .= "optionalreaction.com";
    
  3. or download this
    $LIST_EMAIL = q(reaction@optionalreaction.com);
    
  4. or download this
    ...
    $WEBPAGE_COMPONENT[7] = "<br><br>[Expected email frequency is: MONTHLY
    + VARIABLE]";
    $WEBPAGE_COMPONENT[8] = "<br><br>[No further action is required]";
    $WEBPAGE_COMPONENT[9] = "<br><br>[Your email address will not be sent,
    + given, or sold, to any third party]";
    ...
    
  5. or download this
    $WEBPAGE_COMPONENT[1] = "'</b><br><br>has been <b>ADDED</b> to<br><br>
    +<b>'";
    $WEBPAGE_COMPONENT[2] = "'</b><br><br>has been <b>REMOVED</b> from<br>
    +<br><b>'";
    
  6. or download this
    my %messages = (
      Add    => '<b>ADDED</b> to',
      Remove => '<b>REMOVED</b> from',
    );
    $ACTION_MESSAGE = "'</b><br><br>has been $messages{$action}<br><br><b>
    +'";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://388667]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-25 05:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found