📄 display_product.php3
字号:
<?################################################################## DISPLAY PRODUCT#################################################################/* init */include ("../include/levels.php3");$access_level = $r_level["sales"];include ("../include/config.php3");$title= "Display Product";include "../include/header.inc";/* process */if (isset($prd_id)) { $product=SQL_READ_PRODUCT($dbproc,$prd_id); DSP_PRODUCT($product); /* affichage de la documentation de base du produit si elle existe */ $type[0]=1; $prd[0]=$prd_id; $doc=SQL_SEARCH_DOCS($dbproc, "no", $type,$prd,'',"doc.id", $way="desc", $user); if ($doc!=-1) { echo "<table width=70%><tr><td>"; $doc=SQL_FETCH_RESULT($doc); DSP_DOC($doc, $mode='full', $mess='Displaying documentation', '',''); echo "</td></tr></table>"; } else echo "no doc to display"; }elsedie ($msg_error);include "../include/footer.inc";?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -