从查询字符串中收集数据
$cat_id=$_GET['cat_id']; // Actual
$cat_id="'2','3'"; // Sample data format required
$sql="select * from table_name where cat_id IN ($cat_id)";
foreach ($dbo->query($sql) as $row) {
$str=$str . "$row[subcat]".",";
}
当我从查询字符串中收集数据并且我必须以这种格式(第 2 行)使用时,我怎样才能在这里防止注入攻击?