How can I prevent SQL injection in PHP?
42028 Oct 2020
If user input is inserted without modification into an SQL query, then the application becomes vulnerable to SQL injection, like in the following example:
$unsafe_variable = $_POST["user_input"];
mysql_query("INSERT INTO `table` (`column`) VALUES ("$unsafe_variable")");
That"s because the user can input something like value"); DROP TABLE table;--, and the query becomes:
INSERT INTO `table` (`column`) VALUES("value"); DROP TABLE table;--")
What can be done to prevent this from happening?
0 likes
Top related questions
What are the concerns around AI and data privacy?
03 Oct 2024 3
What is antivirus software, and why is it important?
03 Sep 2024 2
Related queries
Latest questions
लोकसभा में वक्फ बिल पर विपक्ष बनाम सरकार।
02 Apr 2025 4
पंजाब के "येशु येशु" पादरी बजिंदर सिंह को 2018 के बलात्कार मामले में आजीवन कारावास की सजा।
01 Apr 2025 2
इस पर सही में कमाई होती है या नहीं
06 Mar 2025 18
गांधी जी का जन्म कब हुआ
06 Mar 2025 20
भारत के प्रधानमंत्री का नाम क्या है
06 Mar 2025 25
भारत की राजधानी क्या है
06 Mar 2025 19
Radhe Radhe ❤️🩹❤️🩹❤️🩹
06 Mar 2025 21