Gianni
|
| Posted: 05/21/2002, 12:02 AM |
|
Hi,
In "Form properties->Input" I need to have a input parameter that's not associated to any form field. The generated PHP code does not contain the get_param() line for initialising the corresponding p* variabile needed to build the where statement.
Where do I have to initialise p* variables?
Thanks
Gianni
|
|
|
 |
Alex Alexapolsky
|
| Posted: 05/21/2002, 2:08 AM |
|
Inout params are for database linkage only.
If you still need to do something with them without db, you can
do it in Form/Open event , like :
$sSQL = $sSQL . " AND field=" . get_param("param_name")
|
|
|
 |
|