Hi, I would like to use a default Where clause in a SQL statement in my list page. If it's the first time the user enters the page, I'd like to modify the Where part of the SQL. This is what I have, but it's doesn't work because it doesn't recognize the _request variable:
global $conn;
if(@$_Request["a"]=="search"&& @!$_Request["searchfor"])
{$strWhereClause=WhereAdd($strWhereClause,"week=2009-09-20");
}
Thanks.