我正在使用Magento的功能來插入&更新查詢。我的要求是,我想在處理這些類型的查詢時處理SQL注入。但我無法找到Magento如何做到這一點。我提供了一個開始樣本。請給我一個完整的例子。使用Magento方法編寫插入查詢並注意SQL注入
<?php
$write = Mage::getSingleton("core/resource")->getConnection("core_write");
$sql = "INSERT INTO Mage_Example (Name, Email, Company, Description, Status, Date)
VALUES ('$name', '$email', '$company', '$desc', '0', NOW())";
?>
現在我想更改上面的查詢以防止可能的SQL注入。我不想使用PHP的默認「mysql_real_escape_string()
」內置函數。任何人都可以使用「$write
」DB處理程序爲我提供一個有用的解決方案。
任何幫助,非常感謝。
$直寫>報價($字符串); – ppostma1 2015-12-09 19:19:10