This topic is locked

Passing search, order and page length data

6/14/2006 12:07:25 PM
PHPRunner General questions
O
osluk author

Jane can you recall the syntax to append to override the site default if I want to dispaly 500 items for admin purposes - thanks Chris
I can do it in 2 steps but I'm sure you showed me how to do this is one string.
http://bordeauxreport.com/db-2005/data_lis...r=1&orderby=d47
http://bordeauxreport.com/db-2005/data_lis...esize&value=500 ??
&pagesize&value=500 ??

Sergey Kornilov admin 6/14/2006

Chris,
you cannot combine these two actions into one however you can do something different.
If you like to change this for all users you can do this in PHPRunner application on SQL query step.
If you like to do this for admin user only modify include/..._variables.ph file:

if (@_Session["UserID"]=="admin")

$gPageSize=500;

else

$gPageSize=30;