list_products.php3

来自「FIREFLY 是一个多用户专业帮助桌面系统」· PHP3 代码 · 共 32 行

PHP3
32
字号
<?##################################################################  LIST PRODUCTS#################################################################/* init */include ("../include/levels.php3");$access_level = $r_level["sales"];include ("../include/config.php3");$title=$msg_list_products;include "../include/header.inc";/* process */  echo $title."<br><br>";  $products=SQL_LIST_PRD($dbproc, $mode="html");  if (is_array($products))    {      for ($index=0;$index<count($products);$index++)        {           echo "<a href='search_doc_do.php3?products[0]=".$products[$index]['prd_id'] ."'  target = 'downright' >".$products[$index]['prd_name']."</a>" ;       echo "<br>";          }    }    else    echo "no products in database";include "../include/footer.inc";?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?