J
|
Jane 11/19/2007 |
Hi, header("Location: DetailTableName_list.php?mastertable=MasterTableName&masterkey1=".$keys["IDField"]); exit();
|
L
|
lordkain2 7/27/2008 |
Hi Jane, I'm using the above code to redirect from add page of master table to list of detail: header("Location: almuerzos_d_list.php?mastertable=almuerzos&masterkey1=".$keys["Id_Alm"]);
http://localhost/adm/almuerzos_d_list.php?mastertable=almuerzos&masterkey1=
Hi, you can do it using After record added event on the Events tab. Here is a sample code: where IDField is your actual field name, DetailTableName and MasterTableName are your actual table names. To add print page check off corresponding option on the Choose pages tab in the PHPRunner. |
J
|
Jane 7/28/2008 |
Hi, header("Location: almuerzos_d_list.php?mastertable=almuerzos&masterkey1=".mysql_insert_id()); |
L
|
lordkain2 7/29/2008 |
Thanks Jane. |