⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 products.xml

📁 The purpose of this code is to assist developers get some good ideas for how to build a PayPal shop
💻 XML
字号:
<?xml version="1.0" encoding="utf-8" ?>
<!-- in this implementation, the order of the product items (name, price, shipping) is important -->
<products>
  <product>
    <product_id>1</product_id>
    <name>Product #1</name>
    <price>13.00</price>
    <shipping>3.00</shipping>
    <handling>.50</handling>
    <picture>product1.jpg</picture>
    <description>describing product 1</description>
    <taxable>true</taxable>
  </product>
  <product>
    <product_id>2</product_id>
    <name>Product #2</name>
    <price>10.00</price>
    <shipping>3.00</shipping>
    <handling>.50</handling>
    <picture>product2.jpg</picture>
    <description>describing product 2</description>
    <taxable>true</taxable>
  </product>
  <product>
    <product_id>3</product_id>
    <name>Product #3</name>
    <price>11.00</price>
    <shipping>3.00</shipping>
    <handling>.50</handling>
    <picture>product3.jpg</picture>
    <description>describing product 3</description>
    <taxable>true</taxable>
  </product>
</products>

⌨️ 快捷键说明

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