![]() |
Admin 12/30/2005 |
Hi, if($masterkey) { $mastertableurl="..."; $mastertablename="..."; $where = AddFieldWrappers("id")."=".make_db_value(RemoveFieldWrappers("id"),$masterkey); $strSQL = AddWhere($strSQL,$where); }
if($masterkey) { $mastertableurl="..."; $mastertablename="..."; $where = "detailtable.id=".make_db_value(RemoveFieldWrappers("id"),$masterkey); $strSQL = AddWhere($strSQL,$where); }
|
T
|
TheSaint author 12/30/2005 |
Hi, Hi, please try using this workaround. Locate the following snippet in your detailtable_list.php file and modify it whis way: where detailtable is your actual details table. |
![]() |
Admin 1/5/2006 |
Hi, |
T
|
TheSaint author 1/23/2006 |
The beta is an improvment but broke some working programs. Now you qualify each name in the "select statement" with the table name. But when you qualify with the "WHERE" clause when searching, you always Hi, we fixed this issue in new PHPRunner 3.0 beta. http://www.asprunner.com/files/phprunner30b.exe Please try it out. |
![]() |
Admin 1/24/2006 |
Hi, if("table1"==$table && $field=="foo2") return "`table1`.`foo2`";
if("table1"==$table && $field=="foo2") return "`table2`.`foo2`"; |