This topic is locked
[SOLVED]

 Is there any way to go directly to the ADD page?

12/1/2010 11:18:34 AM
PHPRunner General questions
K
karmacomposer author

My client does not want to click on ADD NEW. I took away all pages except ADD (no list, print, etc). It STILL wants you to press ADD NEW to add a record (there are no records). How can I get phprunner to open the add page directly?
Mike

F
FreddieM 12/1/2010



My client does not want to click on ADD NEW. I took away all pages except ADD (no list, print, etc). It STILL wants you to press ADD NEW to add a record (there are no records). How can I get phprunner to open the add page directly?
Mike


Add this in 'Before process' on the list page.
header("Location: anypage.php");

exit();
Where anypage is the add page.

J
Jane 12/1/2010

You can point your menu link to the add page directly in the Menu Builder on the Visual Editor tab.

K
karmacomposer author 12/1/2010



Add this in 'Before process' on the list page.
header("Location: anypage.php");

exit();
Where anypage is the add page.


Thanks. Trying it now.
Mike