📄 delink_do.php3
字号:
<?################################################################## DELINK DO##################################################################/* init */include ("../include/config.php3");/* process */if ((isset($mode)) && ($mode="delink") && (isset($from_id)) && (isset($from_table)) && (isset($to_table)) && (isset($to_id))) // si on a des valeurs d'appel { /* on lance la suppression */ $res=SQL_DELETE_LINK($dbproc, $from_table,$from_id, $to_table, $to_id, $user->ent_id); if ($res==0) { switch($from_table) { case "docs": header("location:display_doc.php3?doc_id=$from_id"); break; case "contacts": break; }} if ($res==-1) echo "No way to delete link between references!";}elseecho "invalid parameters";?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -