Nice Phil.

A little more typing than the CF version, but the more I delve into PHP, the
more I realize its power and flexibility.

Thanks for the speedy reply...........

--Noah


----- Original Message -----
From: "Philip Olson" <[EMAIL PROTECTED]>
To: "CF High" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Saturday, February 01, 2003 1:05 PM
Subject: Re: [PHP] Need to set default parameter || How to do in PHP?


> On Sat, 1 Feb 2003, CF High wrote:
>
> > Hey all.
> >
> > In cold fusion I was able to define a default value with the <cfparam
name =
> > "test" default = "myValue"> tag
> >
> > When I passed the variable "test" via a form or query string, it would
over
> > ride the parameter value.
> >
> > How can I do this in PHP?  I looked in PHP manual for param, default,
etc.,
> > but could find no equivalent.
> >
> > Any ideas?
>
> if (!isset($_REQUEST['rvar']) || inappropriate($_REQUEST['rvar'])) {
>     $rvar = 'default';
> } else {
>     $rvar = $_REQUEST['rvar'];
> }
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to