Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Mandatory Fields

by ehdonhon (Curate)
on Jun 05, 2003 at 22:25 UTC ( [id://263534]=note: print w/replies, xml ) Need Help??


in reply to Mandatory Fields

Make it a bit more readable while you're at it.

$Mandatory_Fields= '*' . join( '*', 'Customer Name', 'Customer Email', 'Phone Number', 'Payment Method', 'BillingAddressLine1', 'BillingCity', 'BillingPostCode', param( 'Payment Method' ) eq 'Credit Card' ? qw( CardStartDate CardIssueNo CardSecurityCode ) : () );

Update: I see that Anonymous wants a '*' before each entry including the first one, not just as a delimeter.

Replies are listed 'Best First'.
Re: Re: Mandatory Fields
by Anonymous Monk on Jun 25, 2003 at 22:25 UTC
    Hi, I have just tried:
    $Mandatory_Fields= '*' . join( '*', 'Customer Name', 'Customer Email', 'Phone Number', 'Payment Method', 'BillingAddressLine1', 'BillingCity', 'BillingPostCode', param( 'payMethods' ) eq 'Credit Card' ? qw( CardStartDate CardIssueNo CardSecurityCode ) : () );
    But I am getting an internal server error when trying it out. Any ideas please?

      Try running:

      perl -c scriptname

      Internal server errors are usually the result of your code not compiling. If that is the case, running perl -c will give you a more helpful error message.

Log In?
Username:
Password:

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

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

    No recent polls found