当我单击来自单个 sql 查询的表结果时。
$zip = mysql_real_escape_string($_GET['zip1']);
$near = "select id, first, last, trainer_address1, CITY, STATE, trainer_zip "
"from event.ACS.trainer where trainer zip ='{$zip}'";
echo lookup_gen::query_results_table($near, matry::base_to('acs/trainer/edit&trainer_id'));
query_results_table
只需构建表格和行,并允许单击任何结果/行的单独链接。
matry::base_to
只是来自基本路径的链接。return 从基本路径到指定路径的链接。
我当前所在的页面是:
index.php?q=event/form&id=19471
如上所示,它在 $_GET 中有这个 id 变量。
当我单击我的 query_results_table 时,我已经设置 matry::base_to 将我链接到
index.php?q=acs/trainer/edit&trainer_id&id=19471
我怎样才能删除该&id=19471
网址的末尾。
我应该使用 unset 还是有更简洁的方法(如果有的话)?
此外,如果有人希望我发布 query_results_table 函数或 matry::base_to 函数,我也会非常高兴。希望我能解决这个问题。谢谢你。