我在 index.php 中有一个查询,在 update.php 中有一个完全相同的查询。如何将查询放在一个位置以便于管理?
这是我的查询:
$sets=$_GET["sets"];
$sets = "'" . str_replace(array("'", ","), array("\\'", "','"), $sets) . "'";
// test code
$query = "
SELECT
*
FROM
`cards`
WHERE
`setName` in ($sets)
ORDER BY
`setName` DESC,
LIMIT
500
";