0

嘿,我如何使用具有另一个 php 页面的输入参数的 sql 语句调用 php define()。

      define("GET_LAST_DATE", "
         SELECT o.`order_date`
         FROM autoship_order a, orders o
         WHERE a.last_order_id = o.order_id
     AND a.autoship_order = ?
             ");
4

1 回答 1

1

为了在其他页面上引用定义,您需要执行include_once定义文件。

include_once "definition.php";

CONSTANT在 mysqli 查询中使用,请执行以下操作。

$stmt = $mysqli->prepare(GET_LAST_DATE);
$stmt->bind_param("i", 1);
于 2013-08-16T07:41:26.750 回答