Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了 PHP 在服务器中仅返回一半记录但全部在 localhost 上的问题。下面是代码片段。
$customersSQL = "SELECT * FROM oneoff_donations_stripe WHERE customer_email='". $_SESSION["loginEmail"] ."'"; $customers = $conn->query($customersSQL);
谁能帮我这个?谢谢你。
我有一个类似的问题。它是由 SELECT 语句破坏 UPDATE 语句的执行引起的。我通过确保在 UPDATE 完成执行后发生 SELECT 来解决这个问题。我希望它在某种程度上有所帮助。干杯。