当我从单个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
只是来自基本路径的链接。
返回从基本路径到指定路径的链接。
我当前的网页是:
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函数,我也会非常高兴。希望我能解决这个问题。谢谢。